|
mysql_unbuffered_querySend an SQL query to MySQL without fetching and buffering the result rows Warning
This extension was deprecated in PHP 5.5.0, and it was removed in PHP 7.0.0. Instead, the MySQLi or PDO_MySQL extension should be used. See also MySQL: choosing an API guide. Alternatives to this function include: Description
resource mysql_unbuffered_query(string
$query , resource $link_identifier = NULL)
mysql_unbuffered_query sends the SQL query
Parameters
Return Values
For SELECT, SHOW, DESCRIBE or EXPLAIN statements,
mysql_unbuffered_query
returns a resource on success, or
For other type of SQL statements, UPDATE, DELETE, DROP, etc,
mysql_unbuffered_query returns Notes
See Also
|