| /plugin/translator/ |
| D | helper.php | 25 var $database = null; variable in helper_plugin_translator 92 if ( empty($this->database) ) { 103 $this->database->query("SHOW TABLES LIKE \"$tableName\";"); 107 if ( $this->database->num_rows() != 1 ) { 109 $this->database->prepare($sqlStatement['statement']); 110 $this->database->execute(); 114 $table = $this->database->databaseConnection->escape_string($tableName); 115 $this->database->prepare("SHOW COLUMNS FROM `$table`"); 116 $this->database->execute(); 118 if ( $this->database->num_rows() >= count($sqlStatement['fields']) ) { [all …]
|
| D | admin.php | 239 $this->functions->database->prepare("SELECT User, Lang FROM tblUserRights;"); 240 $this->functions->database->execute(); 242 if ( $this->functions->database->num_rows() != 0 ) { 244 $data = array(); $this->functions->database->bind_assoc($data); 245 while ( $this->functions->database->fetch() ) { 270 $this->functions->database->prepare("DELETE FROM tblUserRights WHERE User=?;"); 271 $this->functions->database->execute($user); 278 $this->functions->database->prepare("SELECT * FROM tblUserRights WHERE User=?;"); 279 $this->functions->database->execute($user); 280 if ( $this->functions->database->num_rows() > 0 ) [all …]
|
| /plugin/yuriigantt/src/Driver/ |
| D | Embedded.php | 105 $database = (object)[ 120 $rawPage = str_replace(self::emptyDatabase(), self::embed($database), $rawPage); 124 return $database; 148 public static function embed(\stdClass $database) argument 150 $embedded = json_encode($database, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE); 182 $database =& $this->getDatabase(); 183 $links =& $database->gantt->links; 204 $database =& $this->getDatabase(); 205 $links =& $database->gantt->links; 225 $database =& $this->getDatabase(); [all …]
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/SQLAdmin/Resource/ |
| D | Databases.php | 40 * @param string $database Name of the database to be deleted in the instance. 44 public function delete($project, $instance, $database, $optParams = []) argument 46 $params = ['project' => $project, 'instance' => $instance, 'database' => $database]; 57 * @param string $database Name of the database in the instance. 61 public function get($project, $instance, $database, $optParams = []) argument 63 $params = ['project' => $project, 'instance' => $instance, 'database' => $database]; 107 * @param string $database Name of the database to be updated in the instance. 112 public function patch($project, $instance, $database, Database $postBody, $optParams = []) argument 114 …$params = ['project' => $project, 'instance' => $instance, 'database' => $database, 'postBody' => … 125 * @param string $database Name of the database to be updated in the instance. [all …]
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Firestore/Resource/ |
| D | ProjectsDatabasesDocuments.php | 60 * @param string $database Required. The database name. In the format: 66 public function batchGet($database, BatchGetDocumentsRequest $postBody, $optParams = []) argument 68 $params = ['database' => $database, 'postBody' => $postBody]; 80 * @param string $database Required. The database name. In the format: 86 public function batchWrite($database, BatchWriteRequest $postBody, $optParams = []) argument 88 $params = ['database' => $database, 'postBody' => $postBody]; 95 * @param string $database Required. The database name. In the format: 101 public function beginTransaction($database, BeginTransactionRequest $postBody, $optParams = []) argument 103 $params = ['database' => $database, 'postBody' => $postBody]; 111 * @param string $database Required. The database name. In the format: [all …]
|
| /plugin/dokullm/ |
| H A D | cli.php | 68 $database = $this->getConf('chroma_database'); 82 …$this->sendFile($path, $host, $port, $tenant, $database, $ollamaHost, $ollamaPort, $ollamaModel, $… 92 …$this->queryChroma($searchTerms, $limit, $host, $port, $tenant, $database, $collection, $ollamaHos… 96 …$this->checkHeartbeat($host, $port, $tenant, $database, $ollamaHost, $ollamaPort, $ollamaModel, $v… 100 …$this->checkIdentity($host, $port, $tenant, $database, $ollamaHost, $ollamaPort, $ollamaModel, $ve… 104 …$this->listCollections($host, $port, $tenant, $database, $ollamaHost, $ollamaPort, $ollamaModel, $… 113 …$this->getDocument($documentId, $host, $port, $tenant, $database, $collection, $ollamaHost, $ollam… 125 …private function sendFile($path, $host, $port, $tenant, $database, $ollamaHost, $ollamaPort, $olla… argument 127 …$chroma = new \dokuwiki\plugin\dokullm\ChromaDBClient($host, $port, $tenant, $database, 'documents… 131 $this->processDirectory($path, $chroma, $host, $port, $tenant, $database, $verbose); [all …]
|
| H A D | ChromaDBClient.php | 13 private $database; variable in dokuwiki\\plugin\\dokullm\\ChromaDBClient 34 * @param string $database ChromaDB database name 40 …public function __construct($host, $port, $tenant, $database, $defaultCollection, $ollamaHost, $ol… argument 45 $this->database = $database; 172 $endpoint = "/tenants/{$this->tenant}/databases/{$this->database}/collections"; 191 $endpoint = "/tenants/{$this->tenant}/databases/{$this->database}/collections"; 217 $endpoint = "/tenants/{$this->tenant}/databases/{$this->database}/collections"; 245 … $endpoint = "/tenants/{$this->tenant}/databases/{$this->database}/collections/{$collectionId}"; 271 …$endpoint = "/tenants/{$this->tenant}/databases/{$this->database}/collections/{$collectionId}/get"; 305 …$endpoint = "/tenants/{$this->tenant}/databases/{$this->database}/collections/{$collectionId}/upse… [all …]
|
| /plugin/yuriigantt/_test/Drivers/ |
| D | embedded.test.php | 70 $database = $handler->getDatabase(); 71 $this->assertIsObject($database); 72 $this->assertEquals($database->pageId, 'asd'); 73 $this->assertEquals($database->version, '1.0'); 74 $this->assertEquals($database->dsn, Embedded::DSN); 75 $this->assertEquals($database->dsn, Embedded::DSN); 76 $this->assertEquals($database->increment->task, 12); 77 $this->assertEquals($database->increment->link, 8);
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Spanner/ |
| D | CreateDatabaseMetadata.php | 25 public $database; variable in Google\\Service\\Spanner\\CreateDatabaseMetadata 30 public function setDatabase($database) argument 32 $this->database = $database; 39 return $this->database;
|
| D | CreateBackupMetadata.php | 29 public $database; variable in Google\\Service\\Spanner\\CreateBackupMetadata 54 public function setDatabase($database) argument 56 $this->database = $database; 63 return $this->database;
|
| D | UpdateDatabaseDdlMetadata.php | 30 public $database; variable in Google\\Service\\Spanner\\UpdateDatabaseDdlMetadata 59 public function setDatabase($database) argument 61 $this->database = $database; 68 return $this->database;
|
| D | Backup.php | 30 public $database; variable in Google\\Service\\Spanner\\Backup 87 public function setDatabase($database) argument 89 $this->database = $database; 96 return $this->database;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Datastream/ |
| D | MysqlObjectIdentifier.php | 25 public $database; variable in Google\\Service\\Datastream\\MysqlObjectIdentifier 34 public function setDatabase($database) argument 36 $this->database = $database; 43 return $this->database;
|
| D | MysqlDatabase.php | 26 public $database; variable in Google\\Service\\Datastream\\MysqlDatabase 33 public function setDatabase($database) argument 35 $this->database = $database; 42 return $this->database;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/DataCatalog/ |
| D | GoogleCloudDatacatalogV1CloudSqlBigQueryConnectionSpec.php | 25 public $database; variable in Google\\Service\\DataCatalog\\GoogleCloudDatacatalogV1CloudSqlBigQueryConnectionSpec 38 public function setDatabase($database) argument 40 $this->database = $database; 47 return $this->database;
|
| /plugin/yuriigantt/ |
| D | syntax.php | 82 $database = json_decode($data); 84 if (empty($database) && !empty($ID)) { 85 $database = Embedded::initDatabase($ID); 88 if (!empty($ID) && $ID !== $database->pageId) { 89 $database->pageId = $ID; 94 $handler->setDatabase($database); 97 return $database;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/BigQueryConnectionService/ |
| D | CloudSqlProperties.php | 27 public $database; variable in Google\\Service\\BigQueryConnectionService\\CloudSqlProperties 54 public function setDatabase($database) argument 56 $this->database = $database; 63 return $this->database;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Spanner/Resource/ |
| D | ProjectsInstancesDatabases.php | 70 * @param string $database Required. The database to be dropped. 74 public function dropDatabase($database, $optParams = []) argument 76 $params = ['database' => $database]; 99 * @param string $database Required. The database whose schema we wish to get. 104 public function getDdl($database, $optParams = []) argument 106 $params = ['database' => $database]; 253 * @param string $database Required. The database to update. 258 public function updateDdl($database, UpdateDatabaseDdlRequest $postBody, $optParams = []) argument 260 $params = ['database' => $database, 'postBody' => $postBody];
|
| D | ProjectsInstancesDatabasesSessions.php | 56 * @param string $database Required. The database in which the new sessions are 62 public function batchCreate($database, BatchCreateSessionsRequest $postBody, $optParams = []) argument 64 $params = ['database' => $database, 'postBody' => $postBody]; 123 * @param string $database Required. The database in which the new session is 129 public function create($database, CreateSessionRequest $postBody, $optParams = []) argument 131 $params = ['database' => $database, 'postBody' => $postBody]; 231 * @param string $database Required. The database in which to list sessions. 246 public function listProjectsInstancesDatabasesSessions($database, $optParams = []) argument 248 $params = ['database' => $database];
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/SQLAdmin/ |
| D | ImportContext.php | 29 public $database; variable in Google\\Service\\SQLAdmin\\ImportContext 78 public function setDatabase($database) argument 80 $this->database = $database; 87 return $this->database;
|
| /plugin/yuriigantt/src/Driver/Embedded/ |
| D | Handler.php | 38 protected $database; variable in dokuwiki\\plugin\\yuriigantt\\src\\Driver\\Embedded\\Handler 52 public function setDatabase($database) argument 55 $this->database = $database; 61 return $this->database;
|
| /plugin/quickstats/GEOIP/vendor/maxmind-db/reader/src/MaxMind/Db/ |
| D | Reader.php | 35 * @param string $database 43 public function __construct($database) argument 51 if (!is_readable($database)) { 53 "The file \"$database\" does not exist or is not readable." 56 $this->fileHandle = @fopen($database, 'rb'); 59 "Error opening \"$database\"." 62 $this->fileSize = @filesize($database); 65 "Error determining the size of \"$database\"." 69 $start = $this->findMetadataStart($database);
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/ |
| D | Firestore.php | 257 'path' => 'v1/{+database}/documents:batchGet', 260 'database' => [ 267 'path' => 'v1/{+database}/documents:batchWrite', 270 'database' => [ 277 'path' => 'v1/{+database}/documents:beginTransaction', 280 'database' => [ 287 'path' => 'v1/{+database}/documents:commit', 290 'database' => [ 460 'path' => 'v1/{+database}/documents:listen', 463 'database' => [ [all …]
|
| /plugin/translator/syntax/ |
| D | label.php | 129 $this->functions->database->prepare("$SQL;"); 130 $this->functions->database->execute($EXECUTE); 132 if ( $this->functions->database->num_rows() > 0 ) { 133 …$data = array(); $this->functions->database->bind_assoc($data); $this->functions->database->fetch(…
|
| /plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/ |
| D | MongoDBHandler.php | 47 * @param string $database Database name 50 …public function __construct($mongodb, string $database, string $collection, $level = Logger::DEBUG… argument 57 $this->collection = $mongodb->selectCollection($database, $collection); 60 $this->namespace = $database . '.' . $collection;
|