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_commit

(No version information available, might only be in Git) Commits a transaction that was begun with sqlsrv_begin_transaction() bool sqlsrv_commit ( resource $conn ) Commits a transaction that was begun with sqlsrv_begin_transaction(). The connection is returned to auto-commit mode after sqlsrv_commit() is called. The transaction that is committed includes all statements that were executed after the call to sqlsrv_begin_transa

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_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_cancel

(No version information available, might only be in Git) Cancels a statement bool sqlsrv_cancel ( resource $stmt ) Cancels a statement. Any results associated with the statement that have not been consumed are deleted. After sqlsrv_cancel() has been called, the specified statement can be re-executed if it was created with sqlsrv_prepare(). Calling sqlsrv_cancel() is not necessary if all the results associated with the statem

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

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.

SQLite3Result::numColumns

(PHP 5 >= 5.3.0, PHP 7) Returns the number of columns in the result set public int SQLite3Result::numColumns ( void ) Returns the number of columns in the result set. Returns: Returns the number of columns in the result set.

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::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