Home
last modified time | relevance | path

Searched refs:sql (Results 151 – 175 of 186) sorted by last modified time

12345678

/plugin/simplemysqlclient/
H A DREADME3 A Interface to execute sql on local mySQL database.
/plugin/crossdbsqlclient/
H A DREADME3 A Interface to execute sql on local mySQL database.
/plugin/authucenter/lib/uc_client/lib/
H A Ddb.class.php66 function result_first($sql) { argument
67 $query = $this->query($sql);
71 function fetch_first($sql) { argument
72 $query = $this->query($sql);
76 function fetch_all($sql, $id = '') { argument
78 $query = $this->query($sql);
92 $this->halt('MySQL Query Error', $sql);
95 $this->histories[] = $sql;
154 function halt($message = '', $sql = '') { argument
159 $this->query($sql);
[all …]
H A Ddbi.class.php55 function result_first($sql) { argument
56 $query = $this->query($sql);
60 function fetch_first($sql) { argument
61 $query = $this->query($sql);
65 function fetch_all($sql, $id = '') { argument
67 $query = $this->query($sql);
81 $this->halt('MySQL Query Error', $sql);
84 $this->histories[] = $sql;
147 function halt($message = '', $sql = '') { argument
152 $this->query($sql);
[all …]
/plugin/authucenter/lib/uc_client/model/
H A Dmail.php55 …$sql = "INSERT INTO ".UC_DBTABLEPRE."mailqueue (touid, tomail, subject, message, frommail, charset…
65 $sql .= implode(',', $values_arr);
66 $this->db->query($sql);
H A Dpm.php481 $sql = "SELECT * FROM ".UC_DBTABLEPRE."pm_lists WHERE min_max='$relationship'";
483 $sql = "SELECT * FROM ".UC_DBTABLEPRE."pm_lists WHERE plid='$plid'";
486 $query = $this->db->query($sql);
/plugin/authdrupal7/
H A Dauth.php85 $sql = str_replace('%{drupal_prefix}', $this->getConf('drupalPrefix'), $sql);
86 $result = $this->_queryDB($sql);
187 $sql = str_replace('%{drupal_prefix}', $this->getConf('drupalPrefix'), $sql);
188 $result = $this->_queryDB($sql);
213 $sql = str_replace('%{drupal_prefix}', $this->getConf('drupalPrefix'), $sql);
214 $result = $this->_queryDB($sql);
238 $result = $this->_queryDB($sql);
465 $sql = "LOCK TABLES ";
468 if($cnt++ != 0) $sql .= ", ";
469 $sql .= "$table $mode";
[all …]
/plugin/magento/
H A Dauth.php390 foreach( $dbh->query( $sql ) as $row ) {
442 $sql = "select user_id entity,password hash from admin_user where user_id = {$entity};";
444 foreach( $dbh->query( $sql ) as $row ) {
509 foreach( $dbh->query( $sql ) as $row ) {
539 foreach( $dbh->query( $sql ) as $row ) {
571 foreach( $dbh->query( $sql ) as $row ) {
604 foreach( $dbh->query( $sql ) as $row ) {
641 foreach( $dbh->query( $sql ) as $row ) {
659 foreach( $dbh->query( $sql ) as $row ) {
691 … $sql = "select role_id id,role_name name from admin_role where role_type = 'G' order by role_id;";
[all …]
/plugin/sphinxsearch/
H A DPageMapper.php63 …$sql = sprintf("select * from {$this->_table} where page_crc in (%s)", implode(",", $pageCrcList));
64 $result = $this->_db->query($sql);
/plugin/owncloud/
H A Dhelper.php66 public function dbQuery($sql, $params){ argument
67 $db = \OC_DB::prepare($sql);
/plugin/sqlraw/
H A Dsyntax.php809 $sql = 'INSERT INTO `'.$table.'` VALUES(';
813 $sql .= '\''.$database->escapeSimple($field).'\', ';
817 $sql = rtrim($sql, ', ');
818 $sql .= ');';
819 $result =& $database->query ($sql);
821 …$renderer->doc .= '<div class="error">INSERT INTO TABLE failed for query: '. $sql .'the error: '. …
/plugin/codebutton2/
H A Dconfig.ini1 SQL%20=sql
/plugin/authowncloud/
H A Dauth.php217 …$sql = "SELECT DISTINCT *PREFIX*users.uid AS user, *PREFIX*users.displayname AS name $selectMail $…
218 $sql .= $joins.' '.$wheres;
219 if($limit > 0) $sql .= ' LIMIT '.$start.','.$limit.' ';
220 $db = OC_DB::prepare($sql);
/plugin/git/
H A Dhelper.php118 $this->sqlite->query($sql);
144 $this->sqlite->query($sql);
458 $sql = "SELECT timestamp FROM git WHERE repo = 'local'";
459 $res = $this->sqlite->query($sql);
477 $sql = "SELECT status FROM git WHERE repo = 'local'";
478 $res = $this->sqlite->query($sql);
494 $res = $this->sqlite->query($sql);
511 $sql = "SELECT status FROM git WHERE repo = 'upstream'";
512 $res = $this->sqlite->query($sql);
548 $this->sqlite->query($sql);
[all …]
/plugin/aceeditor/
H A Dbuild.js1sql|sql_big_result|sql_buffer_result|sql_cache|sql_calc_found_rows|sql_no_cache|sql_small_result|s… property in AnonymousFunction3f7200173f900.mt
/plugin/fedauth/Auth/OpenID/
H A DDatabaseConnection.php39 * @param string $sql An SQL string with placeholders. The
51 function query($sql, $params = array()) argument
80 * @param string $sql An SQL string with placeholders. The
91 function getOne($sql, $params = array()) argument
99 * @param string $sql An SQL string with placeholders. The
109 function getRow($sql, $params = array()) argument
116 * @param string $sql An SQL string with placeholders. The
126 function getAll($sql, $params = array()) argument
H A DPostgreSQLStore.php25 $this->sql['nonce_table'] =
31 $this->sql['assoc_table'] =
42 $this->sql['set_assoc'] =
52 $this->sql['get_assocs'] =
56 $this->sql['get_assoc'] =
60 $this->sql['remove_assoc'] =
63 $this->sql['add_nonce'] =
68 $this->sql['clean_nonce'] =
71 $this->sql['clean_assoc'] =
84 $this->connection->query($this->sql['set_assoc']['update_assoc'],
[all …]
H A DSQLiteStore.php22 $this->sql['nonce_table'] =
26 $this->sql['assoc_table'] =
31 $this->sql['set_assoc'] =
34 $this->sql['get_assocs'] =
38 $this->sql['get_assoc'] =
42 $this->sql['remove_assoc'] =
45 $this->sql['add_nonce'] =
48 $this->sql['clean_nonce'] =
51 $this->sql['clean_assoc'] =
H A DMySQLStore.php25 $this->sql['nonce_table'] =
33 $this->sql['assoc_table'] =
44 $this->sql['set_assoc'] =
48 $this->sql['get_assocs'] =
52 $this->sql['get_assoc'] =
56 $this->sql['remove_assoc'] =
59 $this->sql['add_nonce'] =
62 $this->sql['clean_nonce'] =
65 $this->sql['clean_assoc'] =
H A DSQLStore.php126 $this->sql = array();
226 if (!array_key_exists($key, $this->sql)) {
228 } else if (!$this->sql[$key]) {
264 if (is_array($this->sql[$k])) {
270 $this->sql[$k] = sprintf($this->sql[$k], $value);
324 return $this->connection->query($this->sql['set_assoc'],
356 $result = $this->connection->getRow($this->sql['get_assoc'],
387 $this->sql['remove_assoc'],
456 $sql = $this->sql['add_nonce'];
457 $result = $this->connection->query($sql, array($server_url,
[all …]
H A DMDB2Store.php320 $sql = "";
330 $sql = sprintf("SELECT handle, secret, issued, lifetime, assoc_type " .
335 $sql = sprintf("SELECT handle, secret, issued, lifetime, assoc_type " .
341 $assoc = $this->connection->getRow($sql, $types, $params);
/plugin/semanticdata/syntax/
H A Dtable.php438 $sql =
449 $sql .= ' LIMIT '.($data['limit'] + 1);
452 return $sql;
/plugin/codebutton_ext/
H A Daction.php146 'title' => $this->getLang('sql'),
147 'icon' => '../../plugins/codebutton_ext/pix/File-sql-32.png',
148 'open' => '<code sql downloadname.sql>\n',
H A Daction.php.bak45 …rebol, reg, robots, ruby, sas, scala, scheme, scilab, sdlbasic, smalltalk, smarty, sql, tcl, terat…
137 'title' => $this->getLang('sql'),
138 'icon' => '../../plugins/codebutton_ext/pix/File-sql-32.png',
139 'open' => '<code sql downloadname.sql>\n',
/plugin/farm/install/animaltemplate/data/pages/wiki/
H A Dsyntax.txt340 …basic, rails, reg, robots, ruby, sas, scheme, sdlbasic, smalltalk, smarty, sql, tcl, text, thinbas…

12345678