Skip to content

Commit b811a65

Browse files
chore: update workflow
1 parent 68651cb commit b811a65

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ Connect to the database of your choice:
2929
>>> db = Database("postgresql://user:password@localhost/db", pool_size=2)
3030
```
3131

32-
The keyword arguments are passed directly to SQLAlchemy's `create_engine()` function. Depending on the database you connect to, you have options like setting the size of connection pools. If you are using `databank` in a multi-threaded environment (e.g. in a web application), make sure the pool size is at least the number of threads.
32+
The keyword arguments are passed directly to SQLAlchemy's `create_engine()` function. Depending on the database you connect to, you have options like setting the size of connection pools.
33+
34+
> If you are using `databank` in a multi-threaded environment (e.g. in a web application), make sure the pool size is at least the number of threads.
3335
3436
Let's create a simple table:
3537

0 commit comments

Comments
 (0)