ibase_backup

(PHP 5, PHP 7) Initiates a backup task in the service manager and returns immediately mixed ibase_backup ( resource $service_handle, string $source_db, string $dest_file [, int $options = 0 [, bool $verbose = false ]] ) This function is currently not documented; only its argument list is available.

ibase_affected_rows

(PHP 5, PHP 7) Return the number of rows that were affected by the previous query int ibase_affected_rows ([ resource $link_identifier ] ) This function returns the number of rows that were affected by the previous query (INSERT, UPDATE or DELETE) that was executed from within the specified transaction context. Parameters: link_identifier A transaction context. If link_id

ibase_add_user

(PHP 5, PHP 7) Add a user to a security database bool ibase_add_user ( resource $service_handle, string $user_name, string $password [, string $first_name [, string $middle_name [, string $last_name ]]] ) Returns: Returns TRUE on success or FALSE on failure. This function is currently not documented; only its argument list is available.

filepro

(PHP 4, PHP 5 <= 5.1.6, PHP 7) Read and verify the map file bool filepro ( string $directory ) This reads and verifies the map file, storing the field count and info. No locking is done, so you should avoid modifying your filePro database while it may be opened in PHP. Note: When safe mode is enabled, PHP checks whether the files or directories being operated upon have the same UID (owner) as the script that is being e

filepro_rowcount

(PHP 4, PHP 5 <= 5.1.6, PHP 7) Find out how many rows are in a filePro database int filepro_rowcount ( void ) Returns the number of rows in the opened filePro database. Note: When safe mode is enabled, PHP checks whether the files or directories being operated upon have the same UID (owner) as the script that is being executed. Returns: Returns the number of rows in the opened filePro database,

filepro_retrieve

(PHP 4, PHP 5 <= 5.1.6, PHP 7) Retrieves data from a filePro database string filepro_retrieve ( int $row_number, int $field_number ) Returns the data from the specified location in the database. Note: When safe mode is enabled, PHP checks whether the files or directories being operated upon have the same UID (owner) as the script that is being executed. Parameters: row_number

filepro_fieldwidth

(PHP 4, PHP 5 <= 5.1.6, PHP 7) Gets the width of a field int filepro_fieldwidth ( int $field_number ) Returns the width of the field corresponding to field_number. Parameters: field_number The field number. Returns: Returns the width of the field as a integer, or FALSE on errors.

filepro_fieldtype

(PHP 4, PHP 5 <= 5.1.6, PHP 7) Gets the type of a field string filepro_fieldtype ( int $field_number ) Returns the edit type of the field corresponding to field_number. Parameters: field_number The field number. Returns: Returns the edit type of the field as a string, or FALSE on errors.

filepro_fieldname

(PHP 4, PHP 5 <= 5.1.6, PHP 7) Gets the name of a field string filepro_fieldname ( int $field_number ) Returns the name of the field corresponding to field_number. Parameters: field_number The field number. Returns: Returns the name of the field as a string, or FALSE on errors.

filepro_fieldcount

(PHP 4, PHP 5 <= 5.1.6, PHP 7) Find out how many fields are in a filePro database int filepro_fieldcount ( void ) Returns the number of fields (columns) in the opened filePro database. Returns: Returns the number of fields in the opened filePro database, or FALSE on errors. See also: filepro() -