我正在尝试查询instance
mapped class
的{{1}},sqlalchemy
包含sql_variant
数据类型的列。但是,在执行我的查询时,我收到以下错误:
sqlalchemy.exc.ProgrammingError: (pyodbc.ProgrammingError) ('ODBC SQL type -150 is not yet supported. column-index=3 type=-150', 'HY106')
我的映射类是这样的:
class ParamValue(Base):
__table__ = Table('param', autoload=True)
它包含4列:
id (PK, int, not null)
param_set_id (FK, int, not null)
param_id (FK, int, not null)
value (sql_variant, null)
我的查询看起来像这样(简单查询):
session.query(ParamValue).all()
任何事都可以提供帮助,谢谢