php的帮助文档,涉及到PHP的案例和基本语法,以及实际应用内容

源代码在线查看: function.odbc-fetch-row.html

软件大小: 3633 K
上传用户: fengkuangyidao
关键词: php PHP 文档 实际应用
下载地址: 免注册下载 普通下载 VIP

相关代码

												 				  Fetch a row				  				 				 				 odbc_fetch_object				 odbc_field_len				 ODBC Functions				 PHP Manual								 				  odbc_fetch_row				  (PHP 4, PHP 5)odbc_fetch_row — Fetch a row								 				 				  Description				  				   bool odbc_fetch_row				    ( resource $result_id				   [, int $row_number				  ] )								  				   Fetches a row of the data that was returned by odbc_do()				   or odbc_exec(). After odbc_fetch_row()				   is called, the fields of that row can be accessed with				   odbc_result().				  				 								 				  Parameters				  				   								    								     result_id												     								      				       The result identifier.				      				     								    								    								     row_number												     								      				       If row_number				 is not specified,				       odbc_fetch_row() will try to fetch the next row in				       the result set. Calls to odbc_fetch_row() with and				       without row_number				 can be mixed.				      				      				       To step through the result more than once, you can call				       odbc_fetch_row() with				       row_number				 1, and then continue doing				       odbc_fetch_row() without				       row_number				 to review the result.  If a driver				       doesn't support fetching rows by number, the				       row_number				 parameter is ignored.				      				     								    								   								  				 								 				  Return Values				  				   Returns TRUE if there was a row, FALSE otherwise.				  				 												 odbc_fetch_object				 odbc_field_len				 ODBC Functions				 PHP Manual											

相关资源