sid_com
sid_com

Reputation: 25117

DBD::SQLite: sqlite_unicode Pragma

When I connect with DBI/DBD::SQLite to a sqlite database without setting the sqlite_unicode pragma, is then used the sqlite_unicode setting the database was created with?

Upvotes: 0

Views: 271

Answers (1)

ikegami
ikegami

Reputation: 385917

No. It's not a pragma, it's a setting that controls whether DBD::SQLite is to decode text or not.

Upvotes: 2

Related Questions