-
6d828f47 :Anonymous
2006-06-10 13:09
-
>>e0f0d91c
modifying pes/data/sqlite3.d :
void open(char[] filename)
in {
assert(m_conn == null);
}
body {
int result = sqlite3_open(toStringz(filename), &m_conn);
if (result != SQLITE_OK) {
throwCurrentException();
}
exec("PRAGMA temp_store = 2");
}
This change saves time in modifying all db openning statements.
Powered by shinGETsu.