Home
last modified time | relevance | path

Searched +full:table +(+path:plugin +path:sqlite) -(+path:plugin +path:sqlite +path:lang) (Results 1 – 8 of 8) sorted by relevance

/plugin/sqlite/
H A DSQLiteDB.php238 * Insert or replace the given data into the table
240 * @param string $table
246 public function saveRecord($table, $data, $replace = true)
259 $sql = $command . ' INTO "' . $table . '" (' . implode(',', $columns) . ') VALUES (' . implode(
268 $sql = 'SELECT * FROM "' . $table . '" WHERE rowid = last_insert_rowid()';
320 * Get a config value from the opt table
337 * Set a config value in the opt table
378 $tables = $this->queryAll("SELECT name,sql FROM sqlite_master WHERE type='table'");
381 foreach ($tables as $table) {
382 fwrite($fp, "DROP TABLE I
217 saveRecord($table, $data, $replace = true) global() argument
[all...]
H A Ddb.sql1 -- the default option table for storing the version
2 CREATE TABLE opts (opt,val);
H A Dadmin.php195 echo '<table class="inline">';
210 echo '</table>';
261 'table' => [
262 'sql' => 'SELECT name,sql FROM sqlite_master WHERE type=\'table\' ORDER BY name',
H A Dhelper.php137 * @param string $table the table the entry should be saved to (will not be escaped)
141 public function storeEntry($table, $entry)
144 $this->adapter->saveRecord($table, $entry);
136 storeEntry($table, $entry) global() argument
/plugin/judge/
H A Dsubmissions.sqlite4 …������������955�tablesubmission_test_casesubmission_test_caseCREATE TABLE submission_test_ca…
11 …eCREATE TA�55�]tablesubmission_test_casesubmission_test_caseCREATE TABLE submission_test_ca…
18 )�##�EtablesubmissionssubmissionsCREATE TABLE submissions
/plugin/sqlite/db/
H A Dupdate0001.sql2 CREATE TABLE queries
/plugin/geonav/db/
H A Dtest.sqlite1 …������������������������������������������������������g���� gtable�t1�t1�3�CREATE TABLE t1 (
7table�states�states�7�CREATE TABLE states ( state_id int UNIQUE PRIMARY KEY, state char(32) NOT NU…
/plugin/sqlite/_test/db/
H A Dupdate0001.sql1 CREATE TABLE testdata (tid INTEGER PRIMARY KEY, keyword, value);