ifx_queryPHP ManualPrevNextifx_queryifx_query -- Send Informix queryDescriptionint ifx_query(string query, int
[link_identifier]
, int
[cursor_type]
, mixed
[blobidarray]
);
Returns: A positive Informix result identifier on success, or
false on error.
A "result_id" resource used by other functions to retrieve the
query results. Sets "affected_rows" for retrieval by the
ifx_affected_rows() function.
ifx_query() sends a query to the currently
active database on the server that's associated with the
specified link identifier. If the link identifier isn't
specified, the last opened link is assumed. If no link is open,
the function tries to establish a link as if
ifx_connect() was called, and use it.
Executes query on connection
conn_id. For "select-type" queries a
cursor is declared and opened. The optional
cursor_type parameter allows you to make
this a "scroll" and/or "hold" cursor. It's a bitmask and can be
either IFX_SCROLL, IFX_HOLD, or both or'ed together. Non-select
queries are "execute immediate". IFX_SCROLL and IFX_HOLD are
symbolic constants and as such shouldn't be between quotes. I you
omit this parameter the cursor is a normal sequential cursor.
For either query type the number of (estimated or real) affected
rows is saved for retrieval by
ifx_affected_rows().
If you have BLOB (BYTE or TEXT) columns in an update query, you
can add a blobidarray parameter containing
the corresponding "blob ids", and you should replace those
columns with a "?" in the query text.
If the contents of the TEXT (or BYTE) column allow it, you can
also use "ifx_textasvarchar(1)" and "ifx_byteasvarchar(1)". This
allows you to treat TEXT (or BYTE) columns just as if they were
ordinary (but long) VARCHAR columns for select queries, and you
don't need to bother with blob id's.
With ifx_textasvarchar(0) or ifx_byteasvarchar(0) (the default
situation), select queries will return BLOB columns as blob id's
(integer value). You can get the value of the blob as a string
or file with the blob functions (see below).
See also: ifx_connect().
Example 1.
Show all rows of the "orders" table as a html table
1
2 ifx_textasvarchar(1); // use "text mode" for blobs
3 $res_id = ifx_query("select * from orders", $conn_id);
4 if (! $res_id) {
5 printf("Can't select orders : %s\n<br>%s<br>\n", ifx_error());
6 ifx_errormsg();
7 die;
8 }
9 ifx_htmltbl_result($res_id, "border=\"1\"");
10 ifx_free_result($res_id);
11
Example 2. Insert some values into the "catalog" table 1
2 // create blob id's for a byte and text column
3 $textid = ifx_create_blob(0, 0, "Text column in memory");
4 $byteid = ifx_create_blob(1, 0, "Byte column in memory");
5 // store blob id's in a blobid array
6 $blobidarray[] = $textid;
7 $blobidarray[] = $byteid;
8 // launch query
9 $query = "insert into catalog (stock_num, manu_code, " .
10 "cat_descr,cat_picture) values(1,'HRO',?,?)";
11 $res_id = ifx_query($query, $conn_id, $blobidarray);
12 if (! $res_id) {
13 ... error ...
14 }
15 // free result id
16 ifx_free_result($res_id);
17
PrevHomeNextifx_closeUpifx_prepare
Wyszukiwarka
Podobne podstrony:
function ifx queryfunction ifx queryfunction ifx errormsgfunction ifx getsqlcafunction ifx htmltbl resultfunction ifx blobinfile modefunction ifx htmltbl resultfunction dbx queryfunction ifx affected rowsfunction ifx update charfunction ifx affected rowsfunction sybase querywięcej podobnych podstron