Lines Matching refs:query
117 * Send a MySQL query
118 * @link https://php.net/manual/en/function.mysql-query.php
119 * @param string $query <p>
120 * An SQL query
123 * The query string should not end with a semicolon.
124 * Data inside the query should be properly escaped.
152 * the query.
156 function mysql_query ($query, $link_identifier = null) {}
160 * Send an SQL query to MySQL without fetching and buffering the result rows.
161 * @link https://php.net/manual/en/function.mysql-unbuffered-query.php
162 * @param string $query <p>
163 * The SQL query to execute.
166 * Data inside the query should be properly escaped.
181 function mysql_unbuffered_query ($query, $link_identifier = null) {}
184 * Selects a database and executes a query on it
185 * @link https://php.net/manual/en/function.mysql-db-query.php
189 * @param string $query <p>
190 * The MySQL query.
193 * Data inside the query should be properly escaped.
196 * @return resource|bool a positive MySQL result resource to the query result,
205 function mysql_db_query ($database, $query, $link_identifier = null) {}
297 * @return int the number of affected rows on success, and -1 if the last query
301 * If the last query was a DELETE query with no WHERE clause, all
310 * the query.
322 * Get the ID generated in the last query
326 * query on success, 0 if the previous
327 * query does not generate an AUTO_INCREMENT value, or false if
730 * Get information about the most recent query
759 * @param $query
764 function mysql ($database_name, $query, $link_identifier) {}