sqlsrv_close

(No version information available, might only be in Git) Closes an open connection and releases resourses associated with the connection bool sqlsrv_close ( resource $conn ) Closes an open connection and releases resourses associated with the connection. Parameters: conn The connection to be closed. Returns: Returns TRUE on success or FALSE on fa

sqlsrv_configure

(No version information available, might only be in Git) Changes the driver error handling and logging configurations bool sqlsrv_configure ( string $setting, mixed $value ) Changes the driver error handling and logging configurations. Parameters: setting The name of the setting to set. The possible values are "WarningsReturnAsErrors", "LogSubsystems", and "LogSeverity".

sqlsrv_connect

(No version information available, might only be in Git) Opens a connection to a Microsoft SQL Server database resource sqlsrv_connect ( string $serverName [, array $connectionInfo ] ) Opens a connection to a Microsoft SQL Server database. By default, the connection is attempted using Windows Authentication. To connect using SQL Server Authentication, include "UID" and "PWD" in the connection options array.

SQLite3Result::finalize

(PHP 5 >= 5.3.0, PHP 7) Closes the result set public bool SQLite3Result::finalize ( void ) Closes the result set. Returns: Returns TRUE.

SQLite3Result::columnType

(PHP 5 >= 5.3.0, PHP 7) Returns the type of the nth column public int SQLite3Result::columnType ( int $column_number ) Returns the type of the column identified by column_number. Parameters: column_number The numeric zero-based index of the column. Returns: Returns the data type index of the column identified by column_number (one of SQLITE3_I

SQLite3Result::fetchArray

(PHP 5 >= 5.3.0, PHP 7) Fetches a result row as an associative or numerically indexed array or both public array SQLite3Result::fetchArray ([ int $mode = SQLITE3_BOTH ] ) Fetches a result row as an associative or numerically indexed array or both. By default, fetches as both. Parameters: mode Controls how the next row will be returned to the caller. This value must

SQLite3Result::columnName

(PHP 5 >= 5.3.0, PHP 7) Returns the name of the nth column public string SQLite3Result::columnName ( int $column_number ) Returns the name of the column specified by the column_number. Parameters: column_number The numeric zero-based index of the column. Returns: Returns the string name of the column identified by column_number.

SQLite3Result::reset

(PHP 5 >= 5.3.0, PHP 7) Resets the result set back to the first row public bool SQLite3Result::reset ( void ) Resets the result set back to the first row. Returns: Returns TRUE if the result set is successfully reset back to the first row, FALSE on failure.

sqlsrv_client_info

(No version information available, might only be in Git) Returns information about the client and specified connection array sqlsrv_client_info ( resource $conn ) Returns information about the client and specified connection Parameters: conn The connection about which information is returned. Returns: Returns an associative array with keys descri

sqlsrv_begin_transaction

(No version information available, might only be in Git) Begins a database transaction bool sqlsrv_begin_transaction ( resource $conn ) The transaction begun by sqlsrv_begin_transaction() includes all statements that were executed after the call to sqlsrv_begin_transaction() and before calls to sqlsrv_rollback() or sqlsrv_commit(). Explicit transactions should be started and committed or rolled back using these functions ins