我们使用sqlalchemy并且插入和更新工作正常,但现在我们希望将UUID从varchar迁移到varbinary。怎么做?
现在的代码示例:
engine = create_engine(dburi, echo = True, pool_size=100, pool_recycle=7200)
db_session = scoped_session(sessionmaker(autocommit=True, bind=engine))
metadata = MetaData(engine)
conn = engine.connect()
....
table = Table("table", metadata, autoload=True)
result = db_session.execute(table.insert(), {"uuid":func.UNHEX("AABBCCDD"})
在输出中我看到
INFO sqlalchemy.engine.base.Engine('unhex(:unhex_1)',)和db - 不是UNHEX的结果,而是UNHEX(:UNHEX_1)
我已经看过Python-Sqlalchemy Binary Column Type HEX() and UNHEX()但是我无法评论这个并且无法理解如果我们加载结构,而不是在课堂上生成它。使用db_sesson.execute()。filter()?当我们需要“在哪里uuid = UNHEX(?)”时如何更新?
现在,如果我写为uuid = binascii.unhexlify(uuid),保存到varbinary(32) - 工作,使用表charset = utf8工作的varchar(64),使用charset = ascii的carchar - 异常
OperationalError: (_mysql_exceptions.OperationalError) (1366, "Incorrect string value: '\\xDB\\xE7,\\x98\\xF9\\x11...' for column 'uuid' at row 1") [SQL: u'INSERT INTO callrec (record_dt, dealer_id, client_id, extension_id, caller_id, destination, file_size, record_url, uuid, record_path, duration) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)'] [parameters: (datetime.datetime(2015, 12, 2, 13, 33, 51), u'1', u'12', u'6', u'000*102', u'000*103', 67244, u'', 'P\xdb\xe7,\x98\xf9\x11\xe5\xb8\x9e\xd3\xb2v\xc0\xccZ', '', 2)]
但手动写为uuid = UNHEX(“AABBCCDD”)已经有效了!
答案 0 :(得分:2)
我认为你错误地插入,试试这个:
db_session.execute(table.insert().values(uuid=func.UNHEX("AABBCCDD")))
或者这(非常接近你的声明):
stmt = table.insert().values(uuid=func.unhex(bindparam('hex')))
db_session.execute(stmt, {'hex': 'AABBCCDD'})
此外,如果您愿意,可以使用找到的解决方案readme,为此,只需here:
table = Table("model", metadata,
Column("uuid", HashColumn(20)),
autoload=True)
并执行以下指令,以便在不使用func.*
的情况下插入:
db_session.execute(table.insert().values(uuid='AABBCCDD'))
答案 1 :(得分:0)
class HashColumn(VARBINARY):
def bind_expression(self, bindvalue):
#bindvalue = type_coerce(bindvalue, Binary)
return func.unhex(func.replace(bindvalue, '-', ''))
def column_expression(self, col):
return func.lower(func.hex(col))
def select(table_name):
table = Table(table_name, self.metadata, Column("uuid", HashColumn(20)), autoload=True, extend_existing=True)
select = table.select()
...