Home | History | Annotate | Download | only in sql

Lines Matching defs:executeCommand

86     if (!SQLiteStatement(*this, "PRAGMA temp_store = MEMORY;").executeCommand())
133 executeCommand("PRAGMA fullfsync = 1;");
135 executeCommand("PRAGMA fullfsync = 0;");
229 executeCommand(makeString("PRAGMA synchronous = ", String::number(sync)));
248 bool SQLiteDatabase::executeCommand(const String& sql)
250 return SQLiteStatement(*this, sql).executeCommand();
282 if (!executeCommand("DROP TABLE " + *table))
289 if (!executeCommand("VACUUM;"))
298 if (!executeCommand("PRAGMA incremental_vacuum"))
463 return executeCommand("PRAGMA auto_vacuum = 2");
466 if (!executeCommand("PRAGMA auto_vacuum = 2"))