sqlsrv_next_result

(No version information available, might only be in Git) Makes the next result of the specified statement active mixed sqlsrv_next_result ( resource $stmt ) Makes the next result of the specified statement active. Results include result sets, row counts, and output parameters. Parameters: stmt The statment on which the next result is being called. Retu

sqlsrv_free_stmt

(No version information available, might only be in Git) Frees all resources for the specified statement bool sqlsrv_free_stmt ( resource $stmt ) Frees all resources for the specified statement. The statement cannot be used after sqlsrv_free_stmt() has been called on it. If sqlsrv_free_stmt() is called on an in-progress statement that alters server state, statement execution is terminated and the statement is rolled back.

sqlsrv_get_field

(No version information available, might only be in Git) Gets field data from the currently selected row mixed sqlsrv_get_field ( resource $stmt, int $fieldIndex [, int $getAsType ] ) Gets field data from the currently selected row. Fields must be accessed in order. Field indices start at 0. Parameters: stmt A statement resource returned by sqlsrv_query() or sqlsrv_execut

sqlsrv_fetch

(No version information available, might only be in Git) Makes the next row in a result set available for reading mixed sqlsrv_fetch ( resource $stmt [, int $row [, int $offset ]] ) Makes the next row in a result set available for reading. Use sqlsrv_get_field() to read the fields of the row. Parameters: stmt A statement resource created by executing sqlsrv_query() or sql

sqlsrv_fetch_array

(No version information available, might only be in Git) Returns a row as an array array sqlsrv_fetch_array ( resource $stmt [, int $fetchType [, int $row [, int $offset ]]] ) Returns the next available row of data as an associative array, a numeric array, or both (the default). Parameters: stmt A statement resource returned by sqlsrv_query or sqlsrv_prepare.

sqlsrv_fetch_object

(No version information available, might only be in Git) Retrieves the next row of data in a result set as an object mixed sqlsrv_fetch_object ( resource $stmt [, string $className [, array $ctorParams [, int $row [, int $offset ]]]] ) Retrieves the next row of data in a result set as an instance of the specified class with properties that match the row field names and values that correspond to the row field values.

sqlsrv_execute

(No version information available, might only be in Git) Executes a statement prepared with sqlsrv_prepare() bool sqlsrv_execute ( resource $stmt ) Executes a statement prepared with sqlsrv_prepare(). This function is ideal for executing a prepared statement multiple times with different parameter values. Parameters: stmt A statement resource returned by sqlsrv_prepare().

sqlsrv_field_metadata

(No version information available, might only be in Git) Retrieves metadata for the fields of a statement prepared by sqlsrv_prepare() or sqlsrv_query() mixed sqlsrv_field_metadata ( resource $stmt ) Retrieves metadata for the fields of a statement prepared by sqlsrv_prepare() or sqlsrv_query(). sqlsrv_field_metadata() can be called on a statement before or after statement execution. Parameters:

sqlsrv_errors

(No version information available, might only be in Git) Returns error and warning information about the last SQLSRV operation performed mixed sqlsrv_errors ([ int $errorsOrWarnings ] ) Returns error and warning information about the last SQLSRV operation performed. Parameters: errorsOrWarnings Determines whether error information, warning information, or both are returne

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