Haskell HDBC-Sqlite3 始终返回 SqlByteString 值

发布于 2024-10-20 07:27:16 字数 501 浏览 2 评论 0原文

我正在使用 HDBC sqlite3 haskell 驱动程序访问本地 sqlite3 数据库,

PRAGMA encoding

结果是

UTF-8

,例如,

SELECT id, title FROM some_table

我总是得到这样的结果:

[[SqlByteString "1", SqlByteString "\210\129\123\211"], ... ]

这很奇怪! 是的,标题包含“国家”符号,是的,我确定 id 的类型为 INTEGER

所以问题是:

  1. 为什么 1 个 unicode 符号会受到 2 个类似 ascii 符号的威胁?
  2. 为什么整数列会产生字节串值?

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:

  1. Why 1 unicode symbol are threated as 2 ascii-like symbols?
  2. Why integer columns results bytestring values?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼泪淡了忧伤 2024-10-27 07:27:16

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 or safeFromSql from Database.HDBC.SqlValue.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文