ifxus_seek_slob

(PHP 4, PHP <=5.2.0) Sets the current file or seek position int ifxus_seek_slob ( int $bid, int $mode, int $offset ) Sets the current file or seek position of an open slob object. Parameters: bid An existing slob id. mode 0 = LO_SEEK_SET, 1 = LO_SEEK_CUR, 2 = LO_SEEK_END. offset A byte offset.

ifx_update_char

(PHP 4, PHP <=5.2.0) Updates the content of the char object bool ifx_update_char ( int $bid, string $content ) Updates the content of the char object for the given char object bid. Parameters: bid A char object identifier. content The new data, as a string. Returns: Returns TRUE on success or FALSE on failur

ifx_textasvarchar

(PHP 4, PHP <=5.2.0) Set the default text mode bool ifx_textasvarchar ( int $mode ) Sets the default text mode for all select-queries. Parameters: mode Mode "0" will return a blob id, and mode "1" will return a varchar with text content. Returns: Returns TRUE on success or FALSE on failure.

ifxus_create_slob

(PHP 4, PHP <=5.2.0) Creates an slob object and opens it int ifxus_create_slob ( int $mode ) Creates an slob object and opens it. Parameters: mode A combination of IFX_LO_RDONLY, IFX_LO_WRONLY, IFX_LO_APPEND IFX_LO_RDWR, IFX_LO_BUFFER, IFX_LO_NOBUFFER. Returns: Return the new slob object-id, or FALSE on errors.

ifxus_close_slob

(PHP 4, PHP <=5.2.0) Deletes the slob object bool ifxus_close_slob ( int $bid ) Deletes the slob object on the given slob object-id bid. Parameters: bid An existing slob id. Returns: Returns TRUE on success or FALSE on failure. See also: ifxus_open_slob() -

ifxus_free_slob

(PHP 4, PHP <=5.2.0) Deletes the slob object bool ifxus_free_slob ( int $bid ) Deletes the slob object. Parameters: bid An existing slob id. Returns: Returns TRUE on success or FALSE on failure. See also: ifxus_close_slob() -

ifx_update_blob

(PHP 4, PHP <=5.2.0) Updates the content of the blob object bool ifx_update_blob ( int $bid, string $content ) Updates the content of the blob object for the given blob object bid. Parameters: bid A BLOB object identifier. content The new data, as a string. Returns: Returns TRUE on success or FALSE on failur

ifx_query

(PHP 4, PHP <=5.2.0) 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 rea

ifx_prepare

(PHP 4, PHP <=5.2.0) Prepare an SQL-statement for execution resource ifx_prepare ( string $query, resource $link_identifier [, int $cursor_def ], mixed $blobidarray ) 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 retrieval by ifx_affec

ifx_num_rows

(PHP 4, PHP <=5.2.0) Count the rows already fetched from a query int ifx_num_rows ( resource $result_id ) Gives the number of rows fetched so far for a query with result_id after a ifx_query() or ifx_do() query. Parameters: result_id result_id is a valid resultid returned by ifx_query() or ifx_prepare() (select type queries only!). Returns: Re