doubleQuotedStringLiterals property

void doubleQuotedStringLiterals=(bool value)

Enable or disable SQLite support for double quotes as string literals.

More information: https://www.sqlite.org/compile.html#dqs

Implementation

set doubleQuotedStringLiterals(bool value) {
  final dqsValue = value ? 1 : 0;
  setIntConfig(SQLITE_DBCONFIG_DQS_DML, dqsValue);
  setIntConfig(SQLITE_DBCONFIG_DQS_DDL, dqsValue);
}