Home
last modified time | relevance | path

Searched refs:quote_string (Results 1 – 13 of 13) sorted by relevance

/plugin/data-au/syntax/
H A Drelated.php95 $cond[] = " ( T1.key = " . $sqlite->quote_string($col) .
116 $from .= ' AND ' . $tables[$col] . ".key = " . $sqlite->quote_string($col);
142 $from .= ' AND ' . $tables[$col] . ".key = " . $sqlite->quote_string($col);
157 AND pages.page != " . $sqlite->quote_string($id) . "
H A Dcloud.php98 $from .= ' AND ' . $tables[$col] . ".key = " . $sqlite->quote_string($col);
110 WHERE dataau.key = " . $sqlite->quote_string($ckey) . "
H A Dtable.php591 $from .= ' AND ' . $tables[$key] . ".key = " . $sqlite->quote_string($key);
628 $from .= ' AND ' . $tables[$col] . ".key = " . $sqlite->quote_string($col);
662 $from2 .= ' AND ' . $table . ".key = " . $sqlite->quote_string($col);
/plugin/data/syntax/
H A Drelated.php
H A Dcloud.php
H A Dtable.php
/plugin/blogtng/helper/
H A Dtags.php194 … $tag_clauses['AND'][] = 'tag = ' . $this->sqlitehelper->getDB()->quote_string(substr($tag, 1));
196 … $tag_clauses['NOT'][] = 'tag != ' . $this->sqlitehelper->getDB()->quote_string(substr($tag, 1));
198 $tag_clauses['OR'][] = 'tag = ' . $this->sqlitehelper->getDB()->quote_string($tag);
/plugin/do/
H A Dhelper.php126 $where .= sprintf(' AND A.page LIKE %s', $this->db->quote_string($ns . '%'));
136 $where .= sprintf(' AND A.page = %s', $this->db->quote_string($args['id'][0]));
165 $where .= ' AND A.md5 = ' . $this->db->quote_string($args['md5'][0]);
/plugin/sqlite/
H A Dhelper.php368 public function quote_string($string)
374 * Similar to quote_string, but without the quotes, useful to construct LIKE patterns
365 public function quote_string($string) global() function in helper_plugin_sqlite
/plugin/sqlite/_test/
H A DHelperTest.php134 $this->assertEquals($quotedstring, $SqliteHelper->quote_string($string));
/plugin/blogtng/
H A Dadmin.php283 $where = 'WHERE blog = ' . $db->quote_string($query['blog']) . ' ';
310 $where .= 'AND ( comments.pid = ' . $db->quote_string($query['pid']) . ' ) ';
/plugin/webdavclient/
H A Dhelper.php260 $query .= " AND lastoccurence > ".$sqlite->quote_string($startTs->getTimestamp());
265 $query .= " AND firstoccurence < ".$sqlite->quote_string($endTs->getTimestamp());
/plugin/davcal/
H A Dhelper.php996 $query .= " AND lastoccurence > ".$sqlite->quote_string($startTs->getTimestamp());
1001 $query .= " AND firstoccurence < ".$sqlite->quote_string($endTs->getTimestamp());