我正在使用pyodbc 3.0.10和PostgreSQL 9.6,使用本地Postgre odbc驱动程序(Postgre Unicode(x64))。我已经创建了一个测试表
create table test ( col boolean )
我试着插入一个Python布尔值。我看不出做了什么参数替换,但pyodbc似乎不适用于所有Postgre数据类型?
In [3]: cur = cxn.cursor()
In [4]: cur.execute('insert into test values (?)', (True,))
---------------------------------------------------------------------------
ProgrammingError Traceback (most recent call last)
<ipython-input-4-5a0edc50457d> in <module>()
----> 1 cur.execute('insert into test values (?)', (True,))
ProgrammingError: ('42804', '[42804] ERROR: column "col" is of type boolean but
expression is of type "char";\nError while preparing parameters (1) (SQLExecDirectW)')
最佳答案
正如Gord Thompson上面指出的,您所要做的就是将;BoolsAsChar=0
添加到连接字符串中
关于python - Postgre和pyodbc的 bool 值不兼容?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41331235/