Haskell HDBC-Sqlite3 始终返回 SqlByteString 值
我正在使用 HDBC sqlite3 haskell 驱动程序访问本地 sqlite3 数据库,
PRAGMA encoding
结果是
UTF-8
,例如,
SELECT id, title FROM some_table
我总是得到这样的结果:
[[SqlByteString "1", SqlByteString "\210\129\123\211"], ... ]
这很奇怪! 是的,标题包含“国家”符号,是的,我确定 id
的类型为 INTEGER
。
所以问题是:
- 为什么 1 个 unicode 符号会受到 2 个类似 ascii 符号的威胁?
- 为什么整数列会产生字节串值?
I am using HDBC sqlite3 haskell driver to access local sqlite3 database which
PRAGMA encoding
is
UTF-8
And as result, for example for
SELECT id, title FROM some_table
I'm always getting the result like this:
[[SqlByteString "1", SqlByteString "\210\129\123\211"], ... ]
That's weird!
Yes, title contains 'national' symbols and yes, I'm sure that id
has type of INTEGER
.
So the questions are:
- Why 1 unicode symbol are threated as 2 ascii-like symbols?
- Why integer columns results bytestring values?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SQLite 是一个无类型数据库,因此数据库中的字段根本没有类型。您应该使用 Database.HDBC.SqlValue。
SQLite is an untyped database, so the fields in your database don't really have a type at all. You should be converting them to a more Haskellish value by using
fromSql
orsafeFromSql
from Database.HDBC.SqlValue.