Firebird/InterBase
Introduction
This extension is considered unmaintained and dead. However, the source code for this extension is still available within PECL GIT here: » https://github.com/php/pecl-database-interbase.
Firebird is a relational database offering many ISO SQL-2003 features that runs on Linux, Windows, and a variety of Unix platforms. Firebird offers excellent concurrency, high performance, and powerful language support for stored procedures and triggers. It has been used in production systems, under a variety of names since 1981.
InterBase is the name of the closed-source variant of this RDBMS that was developed by Embarcadero/Inprise. More information about InterBase is available at » http://www.embarcadero.com/products/interbase.
Firebird is a commercially independent project (fundation) of C++ programmers, technical advisors and supporters developing and enhancing a multi-platform relational database management system based on the source code released by Inprise Corp (now known as Embarcadero) under the InterBase Public License v.1.0 on 25 July, 2000. More information about Firebird is available at » http://www.firebirdsql.org/.
Note: This extension has been moved to the » PECL repository and is no longer bundled with PHP as of PHP 7.4.0 This extension supports InterBase versions 6 and up and Firebird version 2.0 and up.
- Installing/Configuring
- Predefined Constants
- Firebird/InterBase Functions
- fbird_add_user — Alias of ibase_add_user
- fbird_affected_rows — Alias of ibase_affected_rows
- fbird_backup — Alias of ibase_backup
- fbird_blob_add — Alias of ibase_blob_add
- fbird_blob_cancel — Cancel creating blob
- fbird_blob_close — Alias of ibase_blob_close
- fbird_blob_create — Alias of ibase_blob_create
- fbird_blob_echo — Alias of ibase_blob_echo
- fbird_blob_get — Alias of ibase_blob_get
- fbird_blob_import — Alias of ibase_blob_import
- fbird_blob_info — Alias of ibase_blob_info
- fbird_blob_open — Alias of ibase_blob_open
- fbird_close — Alias of ibase_close
- fbird_commit — Alias of ibase_commit
- fbird_commit_ret — Alias of ibase_commit_ret
- fbird_connect — Alias of ibase_connect
- fbird_db_info — Alias of ibase_db_info
- fbird_delete_user — Alias of ibase_delete_user
- fbird_drop_db — Alias of ibase_drop_db
- fbird_errcode — Alias of ibase_errcode
- fbird_errmsg — Alias of ibase_errmsg
- fbird_execute — Alias of ibase_execute
- fbird_fetch_assoc — Alias of ibase_fetch_assoc
- fbird_fetch_object — Alias of ibase_fetch_object
- fbird_fetch_row — Alias of ibase_fetch_row
- fbird_field_info — Alias of ibase_field_info
- fbird_free_event_handler — Alias of ibase_free_event_handler
- fbird_free_query — Alias of ibase_free_query
- fbird_free_result — Alias of ibase_free_result
- fbird_gen_id — Alias of ibase_gen_id
- fbird_maintain_db — Alias of ibase_maintain_db
- fbird_modify_user — Alias of ibase_modify_user
- fbird_name_result — Alias of ibase_name_result
- fbird_num_fields — Alias of ibase_num_fields
- fbird_num_params — Alias of ibase_num_params
- fbird_param_info — Alias of ibase_param_info
- fbird_pconnect — Alias of ibase_pconnect
- fbird_prepare — Alias of ibase_prepare
- fbird_query — Alias of ibase_query
- fbird_restore — Alias of ibase_restore
- fbird_rollback — Alias of ibase_rollback
- fbird_rollback_ret — Alias of ibase_rollback_ret
- fbird_server_info — Alias of ibase_server_info
- fbird_service_attach — Alias of ibase_service_attach
- fbird_service_detach — Alias of ibase_service_detach
- fbird_set_event_handler — Alias of ibase_set_event_handler
- fbird_trans — Alias of ibase_trans
- fbird_wait_event — Alias of ibase_wait_event
- ibase_add_user — Add a user to a security database
- ibase_affected_rows — Return the number of rows that were affected by the previous query
- ibase_backup — Initiates a backup task in the service manager and returns immediately
- ibase_blob_add — Add data into a newly created blob
- ibase_blob_cancel — Cancel creating blob
- ibase_blob_close — Close blob
- ibase_blob_create — Create a new blob for adding data
- ibase_blob_echo — Output blob contents to browser
- ibase_blob_get — Get len bytes data from open blob
- ibase_blob_import — Create blob, copy file in it, and close it
- ibase_blob_info — Return blob length and other useful info
- ibase_blob_open — Open blob for retrieving data parts
- ibase_close — Close a connection to an InterBase database
- ibase_commit — Commit a transaction
- ibase_commit_ret — Commit a transaction without closing it
- ibase_connect — Open a connection to a database
- ibase_db_info — Request statistics about a database
- ibase_delete_user — Delete a user from a security database
- ibase_drop_db — Drops a database
- ibase_errcode — Return an error code
- ibase_errmsg — Return error messages
- ibase_execute — Execute a previously prepared query
- ibase_fetch_assoc — Fetch a result row from a query as an associative array
- ibase_fetch_object — Get an object from a InterBase database
- ibase_fetch_row — Fetch a row from an InterBase database
- ibase_field_info — Get information about a field
- ibase_free_event_handler — Cancels a registered event handler
- ibase_free_query — Free memory allocated by a prepared query
- ibase_free_result — Free a result set
- ibase_gen_id — Increments the named generator and returns its new value
- ibase_maintain_db — Execute a maintenance command on the database server
- ibase_modify_user — Modify a user to a security database
- ibase_name_result — Assigns a name to a result set
- ibase_num_fields — Get the number of fields in a result set
- ibase_num_params — Return the number of parameters in a prepared query
- ibase_param_info — Return information about a parameter in a prepared query
- ibase_pconnect — Open a persistent connection to an InterBase database
- ibase_prepare — Prepare a query for later binding of parameter placeholders and execution
- ibase_query — Execute a query on an InterBase database
- ibase_restore — Initiates a restore task in the service manager and returns immediately
- ibase_rollback — Roll back a transaction
- ibase_rollback_ret — Roll back a transaction without closing it
- ibase_server_info — Request information about a database server
- ibase_service_attach — Connect to the service manager
- ibase_service_detach — Disconnect from the service manager
- ibase_set_event_handler — Register a callback function to be called when events are posted
- ibase_trans — Begin a transaction
- ibase_wait_event — Wait for an event to be posted by the database