使用 ORLite 时,放置 sqlite_unicode 设置的正确位置在哪里?
sqlite_unicode
Where is the right place to put the sqlite_unicode setting when using ORLite?
不幸的是,没有一个真正好的地方。请参阅 bug #61191:在 DBI->connect 中启用 sqllite_unicode attrs 了解更多信息。
DBI->connect 中启用 sqllite_unicode
Unfortunately, there isn't a really good place. See bug #61191: Enable sqllite_unicode in the DBI->connect attrs for more information.
DBI->connect
从现在开始,您可以只使用unicode 选项,它将为您设置 sqlite_unicode 。 已在 1.52 中修复。 :-)
unicode 选项,它将为您设置 sqlite_unicode 。 已在 1.52 中修复。 :-)
use ORLite { file => 'sample.db', unicode => 1, ...
From now on, you can just use the unicode option, which will set sqlite_unicode for you. Fixed in 1.52. :-)
unicode
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(2)
不幸的是,没有一个真正好的地方。请参阅 bug #61191:在
DBI->connect 中启用 sqllite_unicode
attrs 了解更多信息。Unfortunately, there isn't a really good place. See bug #61191: Enable sqllite_unicode in the
DBI->connect
attrs for more information.从现在开始,您可以只使用
unicode 选项,它将为您设置
sqlite_unicode
。 已在 1.52 中修复。 :-)From now on, you can just use the
unicode
option, which will setsqlite_unicode
for you. Fixed in 1.52. :-)