Where is the right place to put the sqlite_unicode setting when using ORLite?

link|improve this question

Back to my liking: as few layers as possible. – sid_com Sep 8 '11 at 8:59
possible not in the strict sense of the word. – sid_com Sep 8 '11 at 10:48
feedback

2 Answers

up vote 2 down vote accepted

Unfortunately, there isn't a really good place. See bug #61191: Enable sqllite_unicode in the DBI->connect attrs for more information.

link|improve this answer
feedback

From now on, you can just use the unicode option, which will set sqlite_unicode for you. Fixed in 1.52. :-)

use ORLite {
    file    => 'sample.db',
    unicode => 1,
    ...
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.