Home
last modified time | relevance | path

Searched refs:database (Results 151 – 174 of 174) sorted by path

1234567

/plugin/sqlquery/
H A DREADME3 Processing query to mysql database and display results as a table.
H A Dplugin.info.txt6 desc Processing query to mysql database and display results as a table.
/plugin/sqlraw/
H A Dsyntax.php759 function _sqlRaw__drop_temp_db($database, &$renderer) { argument
762 $result =& $database->query ($query);
783 function _sqlRaw__create_temp_db($database, $headers, $rows, $max_field_lengths, &$renderer) { argument
798 $result =& $database->query ($query);
813 $sql .= '\''.$database->escapeSimple($field).'\', ';
819 $result =& $database->query ($sql);
/plugin/stopforumspam/
H A Dplugin.info.txt6 desc Checks new users against a database of known spammers maintained by stopforumspam.org
/plugin/svgimg2/
H A Dhelper.php16 var $database = null; variable in helper_plugin_svgimg
/plugin/syntaxhighlighter4/dist/
H A Dsyntaxhighlighter.js.map1 …continue ' +\n 'create cube current current_date current_time cursor database date ' +\n 'de…
/plugin/tagging/lang/en/
H A Dclean.txt1 ===== Clean up tag database =====
/plugin/textinsert/
H A DREADME41 LANG_name in the textinsert database. So, there must be a default entry in that database.
/plugin/translator/
H A Dadmin.php240 $this->functions->database->execute();
245 while ( $this->functions->database->fetch() ) {
271 $this->functions->database->execute($user);
279 $this->functions->database->execute($user);
330 $this->functions->database->execute($name);
474 $this->functions->database->execute($EXECUTE);
499 $this->functions->database->execute($EXECUTE);
576 $this->functions->database->execute($user);
585 while ( $this->functions->database->fetch()) {
630 $this->functions->database->execute($user);
[all …]
H A Dhelper.php25 var $database = null; variable in helper_plugin_translator
92 if ( empty($this->database) ) {
158 $this->database->close();
159 $this->database = null;
187 $data = array(); $this->database->bind_assoc($data); $this->database->fetch();
201 $data = array(); $this->database->bind_assoc($data); $this->database->fetch();
380 $data = array(); $this->database->bind_assoc($data); $this->database->fetch();
768 $data = array(); $this->database->bind_assoc($data); $this->database->fetch();
1069 $data = array(); $this->database->bind_assoc($data); $this->database->fetch();
1137 $data=array(); $this->database->bind_assoc($data); $this->database->fetch();
[all …]
/plugin/translator/syntax/
H A Dlabel.php129 $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(…
H A Dtranslator.php142 $this->functions->database->prepare("SELECT CategoryID, Name, FileName FROM tblCategory;");
143 $this->functions->database->execute();
145 if ( $this->functions->database->num_rows() == 0 ) {
150 $categories = array(); $data = array(); $this->functions->database->bind_assoc($data);
151 while ( $this->functions->database->fetch() ) {
/plugin/vbsso/
H A DREADME.md7 Provides universal Single Sign-On feature so that WordPress can use the vBulletin user database to …
/plugin/webdav/vendor/sabre/dav/
H A DCHANGELOG.md65 * Removed database migration script for sabre/dav 1.7. To update from that
676 * Changed: A few database changes for the CalDAV PDO backend. Make sure you
677 run `bin/migrate21.php` to upgrade your database schema.
776 database table name.
836 * Updated: MySQL database schema optimized by using more efficient column types.
974 * Updated: MySQL database schema optimized by using more efficient column types.
1145 * Fixed: vcardurl in database schema can now hold 255 characters instead of 80
1227 * BC Break: The calendarobjects database table has a bunch of new fields, and a
1309 * Fixed: vcardurl in database schema can now hold 255 characters instead of 80
1911 * Added: MySQL database dumps. MySQL is now also supported next to SQLite.
/plugin/xlsx2dw/packages/xlsx/
H A Dxlsx.mjs22453 case 'database-range': // 9.4.15 <table:database-range>
22477 case 'database-ranges': break; // 9.4.14 <table:database-ranges>
/plugin/yuriigantt/
H A DREADME.md39 1. (Optional) Click page edit. You will see that data for empty embedded database was initialized
62 NOTE! Currently only embedded database driver is supported
68 Info about gantt database is stored in page within special pattern in JSON format.
69 Embedded database also stores its data near database info.
75 "dsn": ":embedded:", <-- says parser what database driver was used
83 …ach user update dokuwiki file is parsed, database extracted, its data get changes and with new cha…
H A Dsyntax.php82 $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/yuriigantt/_test/Drivers/
H A Dembedded.test.php70 $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/yuriigantt/_test/
H A Dtest_page.txt41 "text": "1st prototype \nwith embedded database",
/plugin/yuriigantt/src/Driver/
H A DEmbedded.php105 $database = (object)[
124 return $database;
182 $database =& $this->getDatabase();
183 $links =& $database->gantt->links;
204 $database =& $this->getDatabase();
205 $links =& $database->gantt->links;
225 $database =& $this->getDatabase();
227 $database->gantt->links[] = $link;
242 $tasks =& $database->gantt->data;
264 $tasks =& $database->gantt->data;
[all …]
/plugin/yuriigantt/src/Driver/Embedded/
H A DHandler.php38 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/yuriigantt/src/Views/
H A Ddhtmlxgantt.php73 let database = <?= json_encode($database); ?>;
/plugin/zenlogin/
H A Dplugin.info.txt6 …enphoto. When a user changed, the changes are applied to Zenphotos user database as well. It provi…
/plugin/zip/lang/en/
H A Dintro.txt3 …page will create a zip archive of your wiki database at the moment. Also, you may restore your wi…

1234567