编写在 PostgreSQL 中插入 varbinary 值的查询
PostgreSQL 中插入 varbinary
值的语法是什么?
SQL Server 的语法使用像 0xFFFF
这样的常量,它不起作用。
What is the syntax in PostgreSQL for inserting varbinary
values?
SQL Server's syntax using a constant like 0xFFFF
, it didn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
鉴于 Postgres 中没有“varbinary”数据类型,我相信你的意思是“bytea”。 查看文档了解如何指定“ bytea”字面意思。
根据您使用的语言和绑定,可能有更复杂的方法来传输二进制数据 - 您可以找到 .Net/C#/Npgsql 示例 此处(在“使用二进制数据和 bytea 数据类型”下)。
Given there's no "varbinary" data type in Postgres I believe you mean "bytea". Take a look at the docs about the way to specify "bytea" literals.
Depending on the language and the bindings you use there could be more sophisticated ways for transferring binary data - you could find a .Net/C#/Npgsql example here (under "Working with binary data and bytea datatype").