我正在尝试使用 NuoDB 数据库进行简单的连接-
import pynuodb
connection = pynuodb.connect("DB", "servername", "adminaccount", "password", options={'schema': 'schemaname'})
cursor = connection.cursor()
thedata = open('file.pdf', 'rb').read()
sql = "update table set column = (?) where id = 1"
cursor.execute(sql, (thedata,))
在尝试加载它时会产生以下错误 -
INVALID_UTF8: invalid UTF-8 code sequence
更新 - 我尝试使用 BLOB 或 BINARY 并且都生成相同的错误。有关数据类型的文档可在此处找到 -