sqlalchemy-rqlite icon indicating copy to clipboard operation
sqlalchemy-rqlite copied to clipboard

sqlalchemy dialect for rqlite, the lightweight, distributed database built on SQLite.

Results 6 sqlalchemy-rqlite issues
Sort by recently updated
recently updated
newest added

``` SADeprecationWarning: The dbapi() classmethod on dialect classes has been renamed to import_dbapi(). Implement an import_dbapi() classmethod directly on class to remove this warning; the old .dbapi() classmethod may be...

``` SAWarning: Dialect sqlite:pyrqlite will not make use of SQL compilation caching as it does not set the 'supports_statement_cache' attribute to ``True``. This can have significant performance implications including some...

With Sqlalchemy 2.0: when defining a DateTime column in table model as: `..., default=datetime.datetime.utcnow)` I get the following error at query: ` File "/venv/lib/python3.8/site-packages/sqlalchemy/engine/result.py", line 521, in return [make_row(row) for...

I get the following error unless I set defaults in datetime columns: `venv/lib/python3.8/site-packages/pyrqlite/extensions.py", line 111, in 'DATETIME': lambda x: x.replace('T', ' ').rstrip('Z') ` Defaults must be set.

Hello: when i use pip install from pypi, I found it failed. ``` ERROR: Could not find a version that satisfies the requirement sqlalchemy_rqlite (from versions: none) ERROR: No matching...

My python code `engine = create_engine('rqlite+pyrqlite://localhost:4001/')` At the beginning, it can work properly. When I restart rqlited, the engine becomes unavailable.Until I run create_engine again, it work properly. Is this...