Listing language features
[PHP] ifx_prepare (edit)
Prepares a query for later use with ifx_do(). For "select-type" queries a cursor is declared and opened. Non-select queries are "execute immediate". For either query type the number of (estimated or real) affected rows is saved for retri... (read more)
$conn = fx_connect( "db", "usr", "password" );
$result = ifx_prepare("SELECT customer_num, company FROM customer", $conn);
ifx_do($result);
Edited 1 time. Last edit by xxx.xxx.1.177 on 08/25/2010 at 07:54AM.