(PHP 4 >= 4.0.4, PHP 5, PECL odbtp >= 1.1.1)
Returns the next batch of records
int mssql_fetch_batch ( resource $result )
Returns the next batch of records.
Parameters:
result
The result resource that is being evaluated. This result comes from a call to mssql_query().
Returns:
Returns the number of rows in the returned batch.
Examples:
mssql_fetch_batch() example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | <?php // Connect to MSSQL and select the database $link = mssql_connect( 'MANGO\SQLEXPRESS' , 'sa' , 'phpfi' ); mssql_select_db( 'php' , $link ); // Send a query $result = mssql_query( 'SELECT * FROM [php].[dbo].[people]' , $link , 100); $records = 10; while ( $records >= 0) { while ( $row = mssql_fetch_assoc( $result )) { // Do stuff ... } -- $records ; } if ( $batchsize = mssql_fetch_batch( $result )) { // $batchsize is the number of records left // in the result, but not shown above } ?> |
Please login to continue.