«

PHP:MySQL函数mysql_unbuffered_query()的用法

时间:2024-3-1 20:45     作者:韩俊     分类: PHP


mysql_unbuffered_query

(PHP 4 >= 4.0.6, PHP 5)

mysql_unbuffered_query — 向 MySQL 发送一条 SQL 查询,并不获取和缓存结果的行

<h3>说明</h3>
  resource <strong>mysql_unbuffered_query</strong>
   ( string <code>$query</code>
  [, resource <code>$link_identifier</code>
 ] )
<p>
 <strong>mysql_unbuffered_query()</strong> 向
 MySQL 发送一条 SQL 查询
 <code>query</code>,但不像
 mysql_query()
 那样自动获取并缓存结果集。一方面,这在处理很大的结果集时会节省可观的内存。另一方面,可以在获取第一行后立即对结果集进行操作,而不用等到整个
 SQL 语句都执行完毕。当使用多个数据库连接时,必须指定可选参数
 <code>link_identifier</code>。
</p>
<p><strong>Note</strong>:
 <p>
  <strong>mysql_unbuffered_query()</strong>
  的好处是有代价的:在
  <strong>mysql_unbuffered_query()</strong>
  返回的结果集之上不能使用
  mysql_num_rows() 和 mysql_data_seek()。此外在向
  MySQL 发送一条新的 SQL
  查询之前,必须提取掉所有未缓存的 SQL
  查询所产生的结果行。
 </p>
</p>
<p>
 参见 mysql_query()。
</p>

标签: php php教程

热门推荐