sqlalchemy-monetdb
sqlalchemy-monetdb copied to clipboard
A SQLAlchemy dialect for MonetDB
Hello all, SQLAlchemy 2.0 is now live and brings a lot of new features. What about support it ? [(https://docs.sqlalchemy.org/en/20/changelog/whatsnew_20.html)] Best regards, Simon
I got following error: TypeError("text() got an unexpected keyword argument 'bindparams'"). I found that: dialet .py "has_table" method is using sql.text(...., bindparams...). I changed the SQL text to be static...
The following script fails spectacularly ```python from sqlalchemy import create_engine, schema, Column, Integer from sqlalchemy.schema import MetaData, Table from sqlalchemy.sql import select, insert engine = create_engine('monetdb://monetdb:monetdb@localhost:50000/devdb', echo=True) # engine =...
Visitor's name must contain only characters for Python symbols.
## Errors - [ ] `JSONTest` issue #52, 87 failures due to lack of dialect support for JSON type - [ ] `IdentityColumnTest` the errors comes from the fact that...
We currently don't have support for the JSON column type. ``` class Job(Base): __tablename__ = 'job' job_id = Column(Integer, primary_key=True) key = Column(String) value = Column(JSON) ``` produces the following...
Several tests fail because of this. There seems to have been an attempt to fix this: https://github.com/gijzelaerr/sqlalchemy-monetdb/blob/master/sqlalchemy_monetdb/base.py#L29 It however seems to ignore this.
Commit #42 contains an important fix that makes it possible for this driver to work on the newer Python versions. Would it be possible to create a new release and...
The upcoming pymonetdb release will drop python2 support, so there is no need to keep supporting python2.
orignally reported here: https://github.com/gijzelaerr/pymonetdb/issues/56 Hi, I am working on an application that uses sqlalchemy for translating machine learning models into SQL code. I need to get the database version from...