|
PHP5中文手册
ifx_query(No version information available, might be only in CVS) ifx_query — Send Informix query 说明
resource ifx_query
( string $query
, resource $link_identifier
[, int $cursor_type
[, mixed $blobidarray
]] )
Sends a query to the currently active database on the server that's associated with the specified link identifier. 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 retrieval by ifx_affected_rows(). 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). 参数
返回值Returns valid Informix result identifier on success, or FALSE on errors. 范例
Example#1 Show all rows of the "orders" table as a HTML table
<?php Example#2 Insert some values into the "catalog" table
<?php |