psycopg2 - 如何始终将非字符串值转换为字符串
psycopg2 的文档有关于如何将特定类型转换为不同类型的说明:
Psycopg 将十进制/数字数据库类型转换为 Python Decimal 对象。我可以用浮动代替吗?
您可以为 PostgreSQL 十进制类型注册自定义适配器:
DEC2FLOAT = psycopg2.extensions.new_type(
psycopg2.extensions.DECIMAL.values,
'DEC2FLOAT',
lambda value, curs: float(value) if value is not None else None)
psycopg2.extensions.register_type(DEC2FLOAT)
但是我的数据将混合有 str、float、integer、decimal、date 类型等。我如何告诉 psycopg2 将任何非字符串值转换为字符串?我不想每次遇到新类型时都注册自定义适配器,因为我的查询可能会发生变化。
我希望我能把情况说得足够清楚。 提前致谢。
psycopg2's doc has an instruction on how to cast a specific type to a different type:
Psycopg converts decimal/numeric database types into Python Decimal objects. Can I have float instead?
You can register a customized adapter for PostgreSQL decimal type:
DEC2FLOAT = psycopg2.extensions.new_type(
psycopg2.extensions.DECIMAL.values,
'DEC2FLOAT',
lambda value, curs: float(value) if value is not None else None)
psycopg2.extensions.register_type(DEC2FLOAT)
But my data will have a mixture of str, float, integer, decimal, date type, etc. How do i tell psycopg2 to cast any non string value to string? I don't want to register a customized adapter everytime I encounter a new type because my query could change.
I hope I make the situation clear enough.
thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以删除所有类型转换程序并接收 postgres 字符串表示形式中的所有内容:
You could delete all the typecasters and receive everything in the postgres string representation:
也许足够调用
str(object)
或像object.__str__
那样获取字段 strMaybe enough call
str(object)
or take field str likeobject.__str__