ibase_blob_open

(PHP 5, PHP 7) Open blob for retrieving data parts resource ibase_blob_open ( resource $link_identifier, string $blob_id ) resource ibase_blob_open ( string $blob_id ) Opens an existing BLOB for reading. Parameters: link_identifier An InterBase link identifier. If omitted, the last opened link is assumed. blob_id A BLOB id.

ibase_commit_ret

(PHP 5, PHP 7) Commit a transaction without closing it bool ibase_commit_ret ([ resource $link_or_trans_identifier = NULL ] ) Commits a transaction without closing it. Parameters: link_or_trans_identifier If called without an argument, this function commits the default transaction of the default link. If the argument is a connection identifier, the default transaction of

ibase_close

(PHP 5, PHP 7) Close a connection to an InterBase database bool ibase_close ([ resource $connection_id = NULL ] ) Closes the link to an InterBase database that's associated with a connection id returned from ibase_connect(). Default transaction on link is committed, other transactions are rolled back. Parameters: connection_id An InterBase link identifier returned from i

ibase_drop_db

(PHP 5, PHP 7) Drops a database bool ibase_drop_db ([ resource $connection = NULL ] ) This functions drops a database that was opened by either ibase_connect() or ibase_pconnect(). The database is closed and deleted from the server. Parameters: connection An InterBase link identifier. If omitted, the last opened link is assumed. Returns: Returns

ibase_blob_create

(PHP 5, PHP 7) Create a new blob for adding data resource ibase_blob_create ([ resource $link_identifier = NULL ] ) ibase_blob_create() creates a new BLOB for filling with data. Parameters: link_identifier An InterBase link identifier. If omitted, the last opened link is assumed. Returns: Returns a BLOB handle for later use with ibase_blob_add()

ibase_blob_add

(PHP 5, PHP 7) Add data into a newly created blob void ibase_blob_add ( resource $blob_handle, string $data ) ibase_blob_add() adds data into a blob created with ibase_blob_create(). Parameters: blob_handle A blob handle opened with ibase_blob_create(). data The data to be added. Returns: No value is returned.

ibase_blob_close

(PHP 5, PHP 7) Close blob mixed ibase_blob_close ( resource $blob_handle ) This function closes a BLOB that has either been opened for reading by ibase_blob_open() or has been opened for writing by ibase_blob_create(). Parameters: blob_handle A BLOB handle opened with ibase_blob_create() or ibase_blob_open(). Returns: If the BLOB was being read,

ibase_blob_get

(PHP 5, PHP 7) Get len bytes data from open blob string ibase_blob_get ( resource $blob_handle, int $len ) This function returns at most len bytes from a BLOB that has been opened for reading by ibase_blob_open(). Note: It is not possible to read from a BLOB that has been opened for writing by ibase_blob_create(). Parameters: blob_handle A BLOB handle opened with iba

ibase_blob_echo

(PHP 5, PHP 7) Output blob contents to browser bool ibase_blob_echo ( string $blob_id ) bool ibase_blob_echo ( resource $link_identifier , string $blob_id ) This function opens a BLOB for reading and sends its contents directly to standard output (the browser, in most cases). Parameters: link_identifier An InterBase link identifier. If omitted, the last opened link is as

ibase_blob_cancel

(PHP 5, PHP 7) Cancel creating blob bool ibase_blob_cancel ( resource $blob_handle ) This function will discard a BLOB if it has not yet been closed by ibase_blob_close(). Parameters: blob_handle A BLOB handle opened with ibase_blob_create(). Returns: Returns TRUE on success or FALSE on failure.