[sqlite] Including PRAGMA statements on connection string

2015-06-09 Thread Mike McWhinney
Hellom, I am using the c# variant of sqlite (system.sqlite.data.org) and am using a connection string similar to this: public static string OMconnectionString = "datasource=database.db; Default Timeout=20; PRAGMA busy_timeout = 600; PRAGMA synchronous=Off"; I then use the following statements to

[sqlite] Including PRAGMA statements on connection string

2015-06-09 Thread Joe Mistachkin
Mike McWhinney wrote: > > public static string OMconnectionString = "datasource=database.db; > Default Timeout=20; PRAGMA busy_timeout = 600; PRAGMA synchronous=Off"; > The connection string should contain name/value pairs, delimited by "=" and ";" (i.e. connection string properties), not SQL