Searched refs:getPdo (Results 1 – 25 of 30) sorted by relevance
12
| /plugin/approve/helper/ |
| H A D | db.php | 34 $this->db->getPdo()->beginTransaction(); 42 $this->db->getPdo()->commit(); 82 $this->db->getPdo()->beginTransaction(); 92 $this->db->getPdo()->commit(); 314 $this->db->getPdo()->beginTransaction(); 316 $this->db->getPdo()->commit(); 355 $this->db->getPdo()->beginTransaction(); 357 $this->db->getPdo()->commit(); 362 $this->db->getPdo()->beginTransaction(); 364 $this->db->getPdo()->commit(); [all …]
|
| /plugin/data/syntax/ |
| D | related.php | 97 $in = implode(',', array_map([$sqlite->getPdo(), 'quote'], $values)); 98 $cond[] = " ( T1.key = " . $sqlite->getPdo()->quote($col) . 119 $from .= ' AND ' . $tables[$col] . ".key = " . $sqlite->getPdo()->quote($col); 151 … $from .= ' AND ' . $tables[$col] . ".key = " . $sqlite->getPdo()->quote($col); 166 AND pages.page != " . $sqlite->getPdo()->quote($id) . "
|
| D | cloud.php | 107 … $from .= ' AND ' . $tables[$col] . ".key = " . $sqlite->getPdo()->quote($col); 119 WHERE data.key = " . $sqlite->getPdo()->quote($ckey) . "
|
| D | table.php | 606 $from .= ' AND ' . $tables[$key] . ".key = " . $sqlite->getPdo()->quote($key); 643 $from .= ' AND ' . $tables[$col] . ".key = " . $sqlite->getPdo()->quote($col); 680 $from2 .= ' AND ' . $table . ".key = " . $sqlite->getPdo()->quote($col); 685 … ' DATARESOLVE(' . $table . '.value,' . $sqlite->getPdo()->quote($filter['colname']) . ') ' .
|
| D | entry.php | 239 $sqlite->getPdo()->beginTransaction(); 292 $sqlite->getPdo()->commit(); 294 $sqlite->getPdo()->rollBack();
|
| /plugin/acknowledge/ |
| D | helper.php | 34 … $this->db->getPdo()->sqliteCreateFunction('AUTH_ISMEMBER', [$this, 'auth_isMember'], -1); 35 … $this->db->getPdo()->sqliteCreateFunction('MATCHES_PAGE_PATTERN', [$this, 'matchPagePattern'], 2); 79 $this->db->getPdo()->beginTransaction(); 87 $this->db->getPdo()->rollBack(); 92 $this->db->getPdo()->commit(); 352 $this->db->getPdo()->beginTransaction(); 393 $this->db->getPdo()->rollBack(); 396 $this->db->getPdo()->commit(); 532 $ulist = implode(',', array_map([$this->db->getPdo(), 'quote'], $users));
|
| /plugin/sqlite/ |
| H A D | helper.php | 126 $this->adapter->getPdo()->sqliteCreateFunction($function_name, $callback, $num_args); 215 $args = array_map([$this->adapter->getPdo(), 'quote'], $args); 361 $vals = array_map([$this->adapter->getPdo(), 'quote'], $vals); 370 return $this->adapter->getPdo()->quote($string); 378 return trim($this->adapter->getPdo()->quote($str), "'");
|
| H A D | admin.php | 73 $this->db->getPdo()->beginTransaction(); 77 $this->db->getPdo()->commit(); 80 $this->db->getPdo()->rollBack();
|
| /plugin/struct/helper/ |
| H A D | db.php | 30 $this->sqlite->getPdo()->sqliteCreateFunction('STRUCT_JSON', [$this, 'STRUCT_JSON'], -1); 33 … $this->sqlite->getPdo()->sqliteCreateFunction('STRUCT_LOOKUP', [$this, 'STRUCT_LOOKUP'], -1); 36 $this->sqlite->getPdo()->sqliteCreateFunction('IS_PUBLISHER', [$this, 'IS_PUBLISHER'], -1);
|
| /plugin/aichat/Storage/ |
| D | SQLiteStorage.php | 37 … $this->db->getPdo()->sqliteCreateFunction('COSIM', $this->sqliteCosineSimilarityCallback(...), 2); 254 $where = 'WHERE lang = ' . $this->db->getPdo()->quote($lang); 260 $this->db->getPdo()->beginTransaction(); 310 $this->db->getPdo()->commit(); 313 $this->db->getPdo()->rollBack(); 351 $where = 'WHERE lang = ' . $this->db->getPdo()->quote($lang);
|
| /plugin/data/admin/ |
| D | aliases.php | 76 $sqlite->getPdo()->beginTransaction(); 93 $sqlite->getPdo()->commit(); 97 $sqlite->getPdo()->rollBack();
|
| /plugin/structstatus/ |
| D | action.php | 66 $sqlite->getPdo()->beginTransaction(); 80 $sqlite->getPdo()->commit(); 82 $sqlite->getPdo()->rollBack();
|
| /plugin/bez/action/ |
| H A D | migration.php | 58 $db = $sqlite->getAdapter()->getPdo(); 91 $db = $sqlite->getAdapter()->getPdo(); 132 $db = $sqlite->getAdapter()->getPdo(); 437 $db = $sqlite->getAdapter()->getPdo();
|
| /plugin/questionnaire/ |
| D | syntax.php | 263 $db->getPdo()->beginTransaction(); 278 $db->getPdo()->commit(); 280 $db->getPdo()->rollBack();
|
| D | helper.php | 27 $this->db->getPdo()->exec('PRAGMA foreign_keys = ON');
|
| /plugin/struct/_test/mock/ |
| H A D | Search.php | 25 …$this->sqlite->getPdo()->sqliteCreateFunction('IS_PUBLISHER', [$this->dbHelper, 'IS_PUBLISHER'], -…
|
| /plugin/ireadit/action/ |
| H A D | migration.php | 146 $db = $sqlite->getAdapter()->getPdo(); 192 $db = $sqlite->getAdapter()->getPdo();
|
| /plugin/statistics/ |
| D | action.php | 271 $db->getPdo()->beginTransaction(); 278 $db->getPdo()->commit();
|
| D | Logger.php | 101 $this->db->getPdo()->beginTransaction(); 117 $this->db->getPdo()->commit();
|
| /plugin/watchcycle/helper/ |
| D | db.php | 35 $this->sqlite->getPdo()->sqliteCreateFunction('DAYS_AGO', [$helper, 'daysAgo'], 1);
|
| /plugin/combo/ComboStrap/ |
| H A D | SqliteResult.php | 74 return $adapter->getPdo()->lastInsertId();
|
| H A D | Sqlite.php | 141 … $adapter->getPdo()->sqliteCreateFunction($regexFunctioName, $regexpClosure, $regexArgCount); 320 $db = $adapter->getPdo();
|
| /plugin/structpublish/helper/ |
| H A D | db.php | 33 $sqlite->getPdo()->sqliteCreateFunction('IS_PUBLISHER', [$this, 'isPublisher'], -1);
|
| /plugin/bez/mdl/ |
| H A D | Model.php | 90 $this->db = $this->sqlite->getAdapter()->getPdo();
|
| /plugin/sqlite/_test/ |
| H A D | SQLiteDBTest.php | 36 $this->assertInstanceOf(\PDO::class, $db->getPdo());
|
12