/plugin/davcal/vendor/sabre/dav/bin/ |
H A D | migrateto20.php | 83 $tableName = $itemType . 's'; variable 84 $tableNameOld = $tableName . '_old'; 87 echo "Upgrading '$tableName'\n"; 90 $row = $pdo->query("SELECT * FROM $tableName LIMIT 1")->fetch(); 94 echo "No records were found in the '$tableName' table.\n"; 102 $pdo->exec("RENAME TABLE $tableName TO $tableNameOld"); 175 echo "Creation of 2.0 $tableName table is complete\n"; 183 echo "the $tableName table alone\n"; 191 $pdo->exec("ALTER TABLE $tableName DROP ctag"); 192 $pdo->exec("UPDATE $tableName SET synctoken = '1'"); [all …]
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/BigtableAdmin/ |
H A D | HotTablet.php | 49 public $tableName; variable in Google\\Service\\BigtableAdmin\\HotTablet 138 public function setTableName($tableName) argument 140 $this->tableName = $tableName; 147 return $this->tableName;
|
/plugin/webdav/vendor/sabre/dav/lib/DAV/PropertyStorage/Backend/ |
H A D | PDO.php | 50 public $tableName = 'propertystorage'; variable in Sabre\\DAV\\PropertyStorage\\Backend\\PDO 86 $query = 'SELECT name, value, valuetype FROM ' . $this->tableName . ' WHERE path = ?'; 131 INSERT INTO {$this->tableName} (path, name, valuetype, value) 140 REPLACE INTO {$this->tableName} (path, name, valuetype, value) 147 …$deleteStmt = $this->pdo->prepare("DELETE FROM " . $this->tableName . " WHERE path = ? AND name = … 194 …$stmt = $this->pdo->prepare("DELETE FROM " . $this->tableName . " WHERE path = ? OR path LIKE ? E… 225 …$select = $this->pdo->prepare('SELECT id, path FROM ' . $this->tableName . ' WHERE path = ? OR pa… 228 $update = $this->pdo->prepare('UPDATE ' . $this->tableName . ' SET path = ? WHERE id = ?');
|
/plugin/randomtables/table-roller/src/Generator/ |
H A D | BaseGenerator.php | 38 $tableName = $match[1]; 40 if (false !== strpos($tableName, '|')) { 41 $parts = explode('|', $tableName); 42 $tableName = $parts[0]; 46 $table = $this->tables->load($tableName);
|
/plugin/combo/ComboStrap/ |
H A D | PageSqlTreeListener.php | 73 private $tableName; variable in ComboStrap\\PageSqlTreeListener 167 if ($this->tableName === self::BACKLINKS) { 177 if ($this->tableName === self::BACKLINKS) { 345 switch ($this->tableName) { 364 $tableName = strtolower($ctx->getText()); 365 $this->tableName = $tableName; 366 switch ($tableName) { 368 $tableName = <<<EOF 408 $tableName [all...] |
H A D | SqliteRequest.php | 24 private $tableName; 61 public function setTableRow(string $tableName, array $data): SqliteRequest 63 $this->tableName = $tableName; 77 $statement = $this->getParametrizeReplaceQuery($this->tableName, $this->data); 80 $queryExecuted = "Upsert of table $this->tableName"; 200 if ($this->data !== null && $this->tableName !== null) { 16 private $tableName; global() variable in ComboStrap\\SqliteRequest 51 setTableRow(string $tableName, array $data) global() argument
|
H A D | Sqlite.php | 159 public static function createSelectFromTableAndColumns(string $tableName, array $columns = null): string 175 return "select $columnStatement from $tableName"; 153 createSelectFromTableAndColumns(string $tableName, array $columns = null) global() argument
|
/plugin/davcal/vendor/sabre/dav/lib/DAVACL/PrincipalBackend/ |
H A D | PDO.php | 27 public $tableName = 'principals'; variable in Sabre\\DAVACL\\PrincipalBackend\\PDO 101 … $result = $this->pdo->query('SELECT ' . implode(',', $fields) . ' FROM ' . $this->tableName); 145 …is->pdo->prepare('SELECT ' . implode(',', $fields) . ' FROM ' . $this->tableName . ' WHERE uri = … 183 $query = "UPDATE " . $this->tableName . " SET "; 244 $query = 'SELECT uri FROM ' . $this->tableName . ' WHERE 1=1 '; 294 …. $this->groupMembersTableName . ' AS groupmembers LEFT JOIN ' . $this->tableName . ' AS principal… 316 …. $this->groupMembersTableName . ' AS groupmembers LEFT JOIN ' . $this->tableName . ' AS principal… 339 …$stmt = $this->pdo->prepare('SELECT id, uri FROM ' . $this->tableName . ' WHERE uri IN (? ' . str_… 380 $stmt = $this->pdo->prepare('INSERT INTO ' . $this->tableName . ' (uri) VALUES (?)');
|
/plugin/webdav/vendor/sabre/dav/lib/DAVACL/PrincipalBackend/ |
H A D | PDO.php | 27 public $tableName = 'principals'; variable in Sabre\\DAVACL\\PrincipalBackend\\PDO 101 … $result = $this->pdo->query('SELECT ' . implode(',', $fields) . ' FROM ' . $this->tableName); 145 …is->pdo->prepare('SELECT ' . implode(',', $fields) . ' FROM ' . $this->tableName . ' WHERE uri = … 183 $query = "UPDATE " . $this->tableName . " SET "; 245 $query = 'SELECT uri FROM ' . $this->tableName . ' WHERE '; 308 $query = 'SELECT uri FROM ' . $this->tableName . ' WHERE lower(email)=lower(?)'; 339 …. $this->groupMembersTableName . ' AS groupmembers LEFT JOIN ' . $this->tableName . ' AS principal… 361 …. $this->groupMembersTableName . ' AS groupmembers LEFT JOIN ' . $this->tableName . ' AS principal… 384 …$stmt = $this->pdo->prepare('SELECT id, uri FROM ' . $this->tableName . ' WHERE uri IN (? ' . str_… 425 $stmt = $this->pdo->prepare('INSERT INTO ' . $this->tableName . ' (uri) VALUES (?)');
|
/plugin/combo/ComboStrap/Meta/Store/ |
H A D | MetadataDbStore.php | 185 $tableName = $this->getTableName($metadata); 188 ->setTableRow($tableName, $row); 192 LogUtility::msg("There was a problem during rows insertion for the table ($tableName)" . $e->getMessage()); 206 $tableName = $this->getTableName($metadata); 210 delete from $tableName where $resourceIdAttribute = ? and $metadataIdAttribute = ? 223 LogUtility::msg("There was a problem during the row delete of $tableName. Message: {$e->getMessage()}"); 256 $tableName = $this->getTableName($metadata); 257 $query = Sqlite::createSelectFromTableAndColumns($tableName, $attributes); 268 throw new ExceptionRuntimeInternal("An exception has occurred with the $tableName ({$metadata->getResource()}) selection query. Message: {$e->getMessage()}, Query: ($query", self::CANONICAL, 1, $e);
|
/plugin/webdav/vendor/sabre/dav/lib/DAV/Locks/Backend/ |
H A D | PDO.php | 24 public $tableName = 'locks'; variable in Sabre\\DAV\\Locks\\Backend\\PDO 62 …ELECT owner, token, timeout, created, scope, depth, uri FROM ' . $this->tableName . ' WHERE (creat… 135 …$stmt = $this->pdo->prepare('UPDATE ' . $this->tableName . ' SET owner = ?, timeout = ?, scope = ?… 146 …$stmt = $this->pdo->prepare('INSERT INTO ' . $this->tableName . ' (owner,timeout,scope,depth,uri,c… 173 … $stmt = $this->pdo->prepare('DELETE FROM ' . $this->tableName . ' WHERE uri = ? AND token = ?');
|
/plugin/davcal/vendor/sabre/dav/lib/DAV/Locks/Backend/ |
H A D | PDO.php | 24 public $tableName = 'locks'; variable in Sabre\\DAV\\Locks\\Backend\\PDO 62 …ELECT owner, token, timeout, created, scope, depth, uri FROM ' . $this->tableName . ' WHERE ((crea… 135 …$stmt = $this->pdo->prepare('UPDATE ' . $this->tableName . ' SET owner = ?, timeout = ?, scope = ?… 146 …$stmt = $this->pdo->prepare('INSERT INTO ' . $this->tableName . ' (owner,timeout,scope,depth,uri,c… 173 … $stmt = $this->pdo->prepare('DELETE FROM ' . $this->tableName . ' WHERE uri = ? AND token = ?');
|
/plugin/webdav/vendor/sabre/dav/lib/DAV/Auth/Backend/ |
H A D | PDO.php | 26 public $tableName = 'users'; variable in Sabre\\DAV\\Auth\\Backend\\PDO 51 … $stmt = $this->pdo->prepare('SELECT digesta1 FROM ' . $this->tableName . ' WHERE username = ?');
|
/plugin/davcal/vendor/sabre/dav/lib/DAV/Auth/Backend/ |
H A D | PDO.php | 26 public $tableName = 'users'; variable in Sabre\\DAV\\Auth\\Backend\\PDO 51 … $stmt = $this->pdo->prepare('SELECT digesta1 FROM ' . $this->tableName . ' WHERE username = ?');
|
/plugin/database2/ |
H A D | syntax.php | 15 protected $tableName; variable in syntax_plugin_database2 123 $this->tableName = trim($args['table']); 137 $db->process( $this->tableName, $args, $this->options );
|
H A D | database2.php | 285 $this->ioIndex = self::$ioIndices[$tableName]++;
|
/plugin/diagramsnet/lib/plugins/ |
H A D | sql.js | 81 function AddRow(propertyModel, tableName) { argument 89 …if (tableName !== foreignKeyModel.PrimaryKeyTableName || (tableName === foreignKeyModel.PrimaryKey… 277 function CreateProperty(name, tableName, foreignKey, isPrimaryKey) { argument 282 property.TableName = tableName;
|
/plugin/database/ |
H A D | database.php | 300 foreach ($environment->tableNames as $tableName) { 305 =getMyLang('prompt_referencing').' '.$tableName; 306 $auditTrail->add("reference Table ".$tableName); 975 $tableName = $p_idOrName; 978 if (in_array($tableName,$environment->tableNames ,true)) 986 $directoryName = $environment->baseFolder.$id.'-'.$tableName; 994 $messages->add($tableName.getMyLang('err_tab_nam')); 2257 $tableName = ''; 2259 $tableName = $_REQUEST["tableName"]; 2260 if ($tableName > '') { [all …]
|
/plugin/translator/ |
H A D | helper.php | 101 foreach ($this->dataBaseStruct as $tableName => $sqlStatement ) { 103 $this->database->query("SHOW TABLES LIKE \"$tableName\";"); 108 msg("Creating table '$tableName'", 0); 114 $table = $this->database->databaseConnection->escape_string($tableName); 124 msg("Field missing in '$tableName': '{$data['Field']}'", -1);
|
/plugin/webdav/vendor/sabre/dav/ |
H A D | CHANGELOG.md | 207 * #697: Added a "tableName" member to the PropertyStorage PDO backend. (@Frzk). 477 * Removed: all `$tableName` arguments from every PDO backend. This was already 655 * Deprecated: All the "tableName" constructor arguments for all the PDO
|
/plugin/codemirror/dist/modes/ |
H A D | sql.min.js.map | 1 …ot common, but are supported by more than 1 DBMS.\n * ODBCdotTable: .tableName\n * zerolessF…
|
/plugin/pdfjs/pdfjs/build/ |
H A D | pdf.worker.js | 35019 var i, j, jj, table, tableName; 35053 tableName = tablesNames[i]; 35054 file[offset] = tableName.charCodeAt(0) & 0xFF; 35055 file[offset + 1] = tableName.charCodeAt(1) & 0xFF; 35056 file[offset + 2] = tableName.charCodeAt(2) & 0xFF; 35057 file[offset + 3] = tableName.charCodeAt(3) & 0xFF; 35067 writeInt32(file, offset + 12, tables[tableName].length);
|
/plugin/webcode/vendor/ |
H A D | firebug-lite-1.4.js | 5225 }},insertHeaderRows:function(netInfoBox,headers,tableName,rowName){if(!headers.length){return argument 5226 }var headersTable=$$(".netInfo"+tableName+"Table",netInfoBox)[0];
|
/plugin/sequencediagram/bower_components/lodash/vendor/firebug-lite/src/ |
H A D | firebug-lite-debug.js | 19759 insertHeaderRows: function(netInfoBox, headers, tableName, rowName) argument 19764 var headersTable = $$(".netInfo"+tableName+"Table", netInfoBox)[0];
|
/plugin/combo/resources/firebug/ |
H A D | firebug-lite-1.4.js | 5236 }},insertHeaderRows:function(netInfoBox,headers,tableName,rowName){if(!headers.length){return argument 5237 }var headersTable=$$(".netInfo"+tableName+"Table",netInfoBox)[0];
|