Ora_Fetch_IntoPodręcznik PHPPoprzedniNastępnyOra_Fetch_Into (PHP 3, PHP 4 )Ora_Fetch_Into -- Fetch a row into the specified result arrayDescriptionint ora_fetch_into ( int cursor, array result [, int flags])
Fetches a row of data into an array. The flags
has two flag values: if the ORA_FETCHINTO_NULLS
flag is set, columns with NULL values are set
in the array; and if the ORA_FETCHINTO_ASSOC
flag is set, an associative array is created.
Returns the number of columns fetched.
Przykład 1. ora_fetch_into()<?php
$results = array();
ora_fetch_into($cursor, $results);
echo $results[0];
echo $results[1];
$results = array();
ora_fetch_into($cursor, $results, ORA_FETCHINTO_NULLS|ORA_FETCHINTO_ASSOC);
echo $results['MyColumn'];
?>
See also ora_parse(),ora_exec(),
ora_fetch(), and ora_do().
PoprzedniSpis treściNastępnyOra_ExecPoczątek rozdziałuOra_Fetch
Wyszukiwarka
Podobne podstrony:
function ora fetch intofunction odbc fetch intofunction ora fetchfunction odbc fetch intofunction ora fetchfunction ovrimos fetch intofunction ora fetchfunction odbc fetch intofunction ora bindfunction xml parse into structfunction pg fetch objectfunction sybase fetch rowfunction mysql fetch rowfunction sybase fetch arrayfunction msql fetch arraywięcej podobnych podstron