You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I see the await database.connect() used but is that the equivalent to sqlalchemy's orm.sessionmaker?
Do I just open a new connection every time up to the defined limit and databases handles them in the connection pool?
I do have the connection and disconnection at start up - but seem to have to call the connect function again as a dependency whenever I try to execute a query elsewhere in the code
I see the
await database.connect()
used but is that the equivalent to sqlalchemy's orm.sessionmaker?Do I just open a new connection every time up to the defined limit and
databases
handles them in the connection pool?I do have the connection and disconnection at start up - but seem to have to call the connect function again as a dependency whenever I try to execute a query elsewhere in the code
The text was updated successfully, but these errors were encountered: