Query: mssql_fetch_row
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
MSSQL_FETCH_ROW(3) MSSQL_FETCH_ROW(3) mssql_fetch_row - Get row as enumerated arraySYNOPSISarray mssql_fetch_row (resource $result)DESCRIPTIONmssql_fetch_row(3) fetches one row of data from the result associated with the specified result identifier. The row is returned as an array. Each result column is stored in an array offset, starting at offset 0. Subsequent call to mssql_fetch_row(3) would return the next row in the result set, or FALSE if there are no more rows.PARAMETERSo $result - The result resource that is being evaluated. This result comes from a call to mssql_query(3).RETURN VALUESReturns an array that corresponds to the fetched row, or FALSE if there are no more rows.EXAMPLESExample #1 mssql_fetch_row(3) example <?php // Connect to MSSQL and select the database $link = mssql_connect('MANGOSQLEXPRESS', 'sa', 'phpfi'); mssql_select_db('php', $link); // Query to execute $query = mssql_query('SELECT [id], [quote] FROM [quotes] WHERE [id] = '42'', $link); // Did the query fail? if (!$query) { die('MSSQL error: ' . mssql_get_last_message()); } // Fetch the row $row = mssql_fetch_row($query); // Print the 'quote' echo 'Quote #' . $row[0] . ': "' . $row[1] . '"'; ?> The above example will output something similar to: Quote #42: "The answer to everything..."NOTESNote This function sets NULL fields to the PHP NULL value.SEE ALSOmssql_fetch_array(3), mssql_fetch_object(3), mssql_data_seek(3), mssql_result(3). PHP Documentation Group MSSQL_FETCH_ROW(3)
Related Man Pages |
---|
fbsql_fetch_array(3) - php |
ingres_fetch_array(3) - php |
msql_fetch_row(3) - php |
mssql_fetch_field(3) - php |
mssql_result(3) - php |
Similar Topics in the Unix Linux Community |
---|
duplicating 1st row of data |
Print row if value in column 1 is the first occurence |
Merging of rows |
File splitter by nth row |
Searching for similar row(s) across multiple files |