Build Your Own DatabaseDriven Website Using PHP amp;amp; MySQL [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Build Your Own DatabaseDriven Website Using PHP amp;amp; MySQL [Electronic resources] - نسخه متنی

Kevin Yank

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید








mysql_unbuffered_query

mysql_unbuffered_query(query[, link_id[, result_mode]])

This function sends an SQL query to MySQL, without fetching or buffering
the result rows automatically, as mysql_query and mysql_db_query do.
This method has two advantages: PHP does not need to allocate a large memory
buffer to store the entire result set, and you can begin to process the results
as soon as PHP receives the first row, instead of having to wait for the full
result set to be received.

The down side is that functions that require information about the full
result set (such as mysql_num_rows) are not available
for result sets produced by mysql_unbuffered_query, and
you must use mysql_fetch_* functions
to retrieve all of the rows in the result set before you can send another
query using that MySQL connection.

/ 190