Home
last modified time | relevance | path

Searched refs:last_query_text (Results 1 – 15 of 15) sorted by relevance

/dports/chinese/phpbb3-tw/phpBB3/includes/db/
H A Dpostgres.php33 var $last_query_text = ''; variable in dbal_postgres
203 $this->last_query_text = $query;
325 if ($query_id !== false && $this->last_query_text != '')
327 …if (preg_match("/^INSERT[\t\n ]+INTO[\t\n ]+([a-z0-9\_\-]+)/is", $this->last_query_text, $tablenam…
H A Dfirebird.php28 var $last_query_text = ''; variable in dbal_firebird
159 $this->last_query_text = $query;
369 if ($query_id !== false && $this->last_query_text != '')
371 …&& preg_match('#^INSERT[\t\n ]+INTO[\t\n ]+([a-z0-9\_\-]+)#i', $this->last_query_text, $tablename))
H A Doracle.php27 var $last_query_text = ''; variable in dbal_oracle
272 $this->last_query_text = $query;
588 if ($query_id !== false && $this->last_query_text != '')
590 …if (preg_match('#^INSERT[\t\n ]+INTO[\t\n ]+([a-z0-9\_\-]+)#is', $this->last_query_text, $tablenam…
H A Dmssql_odbc.php34 var $last_query_text = ''; variable in dbal_mssql_odbc
176 $this->last_query_text = $query;
H A Dmssqlnative.php200 var $last_query_text = ''; variable in dbal_mssqlnative
H A Ddbal.php221 $query_id = $this->sql_query($this->last_query_text);
/dports/www/phpbb3/phpBB3/phpbb/db/driver/
H A Dpostgres.php23 var $last_query_text = ''; variable in phpbb\\db\\driver\\postgres
185 $this->last_query_text = $query;
349 if ($query_id !== false && $this->last_query_text != '')
351 …if (preg_match("/^INSERT[\t\n ]+INTO[\t\n ]+([a-z0-9\_\-]+)/is", $this->last_query_text, $tablenam…
H A Doracle.php21 var $last_query_text = ''; variable in phpbb\\db\\driver\\oracle
258 $this->last_query_text = $query;
579 if ($query_id !== false && $this->last_query_text != '')
581 …if (preg_match('#^INSERT[\t\n ]+INTO[\t\n ]+([a-z0-9\_\-]+)#is', $this->last_query_text, $tablenam…
H A Dmssql_odbc.php27 var $last_query_text = ''; variable in phpbb\\db\\driver\\mssql_odbc
163 $this->last_query_text = $query;
H A Dmssqlnative.php26 var $last_query_text = ''; variable in phpbb\\db\\driver\\mssqlnative
H A Dsqlite3.php130 $this->last_query_text = $query;
H A Ddriver.php346 $query_id = $this->sql_query($this->last_query_text);
/dports/chinese/phpbb-tw/phpBB2/db/
H A Dpostgres7.php151 $this->last_query_text[$this->query_result] = $query;
340 if($query_id && $this->last_query_text[$query_id] != "")
342 …if( preg_match("/^INSERT[\t\n ]+INTO[\t\n ]+([a-z0-9\_\-]+)/is", $this->last_query_text[$query_id]…
/dports/www/phpbb/phpBB2/db/
H A Dpostgres7.php151 $this->last_query_text[$this->query_result] = $query;
340 if($query_id && $this->last_query_text[$query_id] != "")
342 …if( preg_match("/^INSERT[\t\n ]+INTO[\t\n ]+([a-z0-9\_\-]+)/is", $this->last_query_text[$query_id]…
/dports/www/punbb/punbb-1.4.6/include/dblayer/
H A Dpgsql.php21 public $last_query_text = array(); variable in DBLayer
119 $this->last_query_text[$this->query_result] = $sql;
258 if ($query_id && $this->last_query_text[$query_id] != '')
260 …if (preg_match('/^INSERT INTO ([a-z0-9\_\-]+)/is', $this->last_query_text[$query_id], $table_name))