-
I mean I know this is for database like postgres, mysql, sqlite. But I m not sure how to use this library or is this library is what i m looking for. If there are more examples available then pls drop the like, or deep documentation. Thanks in advance :) For now i have looked: Also how to make connections, more info about the library. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
This library is asynchronous database access layer (DBAL) for Python. It gives you unified interface for connecting and querying different database systems in asynchronous fashion. Quickstart has example for connecting to SQLite database and running few queries against. There's also connections and transactions examples in the docs. Can you share what's not obvious for you in the docs? They seem pretty self-explanatory looking at the feedback we've got so far. |
Beta Was this translation helpful? Give feedback.
This library is asynchronous database access layer (DBAL) for Python. It gives you unified interface for connecting and querying different database systems in asynchronous fashion.
Quickstart has example for connecting to SQLite database and running few queries against. There's also connections and transactions examples in the docs.
Can you share what's not obvious for you in the docs? They seem pretty self-explanatory looking at the feedback we've got so far.