function ifx getsqlca


ifx_getsqlcaPHP ManualPrevNextifx_getsqlcaifx_getsqlca -- Get the contents of sqlca.sqlerrd[0..5] after a query Descriptionarray ifx_getsqlca(int result_id); result_id is a valid result id returned by ifx_query() or ifx_prepare(). Returns a pseudo-row (assiociative array) with sqlca.sqlerrd[0] ... sqlca.sqlerrd[5] after the query associated with result_id. For inserts, updates and deletes the values returned are those as set by the server after executing the query. This gives access to the number of affected rows and the serial insert value. For SELECTs the values are those saved after the PREPARE statement. This gives access to the *estimated* number of affected rows. The use of this function saves the overhead of executing a "select dbinfo('sqlca.sqlerrdx')" query, as it retrieves the values that were saved by the ifx driver at the appropriate moment. Example 1. Retrieve Informix sqlca.sqlerrd[x] values 1  2 /* assume the first column of 'sometable' is a serial */ 3 $qid = ifx_query("insert into sometable 4  values (0, '2nd column', 'another column' ", $connid); 5 if (! $qid) { 6  ... error ... 7 } 8 $sqlca = ifx_getsqlca ($qid); 9 $serial_value = $sqlca["sqlerrd1"]; 10 echo "The serial value of the inserted row is : " . $serial_value<br>\n"; 11  PrevHomeNextifx_affected_rowsUpifx_fetch_row

Wyszukiwarka

Podobne podstrony:
function ifx getsqlca
function ifx getsqlca
function ifx errormsg
function ifx htmltbl result
function ifx blobinfile mode
function ifx htmltbl result
function ifx affected rows
function ifx update char
function ifx affected rows
function ifx byteasvarchar

więcej podobnych podstron