Freelance PHP programmer India | Freelance web developer india | Web development India | web developer CV india | Compiling PHP and Apache 2 from source on Linux
Mssql Functions
PHP Manual

mssql_fetch_batch

(PHP 4 >= 4.0.4, PHP 5, PECL odbtp >= 1.1.1)

mssql_fetch_batchReturns the next batch of records

Description

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().

Return Values

Returns the batch number as an integer.

Examples

Example #1 mssql_fetch_batch() example

<?php
// Connect to MSSQL
$link mssql_connect('MANGO\SQLEXPRESS''sa''phpfi');
mssql_select_db('php'$link);

// Send a query
$result mssql_query('SELECT * FROM [php].[dbo].[people]'$link100);
$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
}
?>


Mssql Functions
PHP Manual