|
PHP5中文手册
sybase_unbuffered_query(PHP 4 >= 4.3.0, PHP 5) sybase_unbuffered_query — Send a Sybase query and do not block 说明
resource sybase_unbuffered_query
( string $query
, resource $link_identifier
[, bool $store_result
] )
sybase_unbuffered_query() sends a query to the currently active database on the server that's associated with the specified link identifier. If the link identifier isn't specified, the last opened link is assumed. If no link is open, the function tries to establish a link as if sybase_connect() was called, and use it. Unlike sybase_query(), sybase_unbuffered_query() reads only the first row of the result set. sybase_fetch_array() and similar function read more rows as needed. sybase_data_seek() reads up to the target row. The behavior may produce better performance for large result sets. sybase_num_rows() will only return the correct number of rows if all result sets have been read. To Sybase, the number of rows is not known and is therefore computed by the client implementation.
参数
返回值Returns a positive Sybase result identifier on success, or FALSE on error. 范例
Example#1 sybase_unbuffered_query() example
<?php 注释
|