sqlsrv_server_info

(No version information available, might only be in Git) Returns information about the server array sqlsrv_server_info ( resource $conn ) Returns information about the server. Parameters: conn The connection resource that connects the client and the server. Returns: Returns an array as described in the following table: Returned Array CurrentData

sqlsrv_send_stream_data

(No version information available, might only be in Git) Sends data from parameter streams to the server bool sqlsrv_send_stream_data ( resource $stmt ) Send data from parameter streams to the server. Up to 8 KB of data is sent with each call. Parameters: stmt A statement resource returned by sqlsrv_query() or sqlsrv_execute(). Returns: Returns T

sqlsrv_rows_affected

(No version information available, might only be in Git) Returns the number of rows modified by the last INSERT, UPDATE, or DELETE query executed int sqlsrv_rows_affected ( resource $stmt ) Returns the number of rows modified by the last INSERT, UPDATE, or DELETE query executed. For information about the number of rows returned by a SELECT query, see sqlsrv_num_rows(). Parameters: stm

sqlsrv_rollback

(No version information available, might only be in Git) Rolls back a transaction that was begun with sqlsrv_begin_transaction() bool sqlsrv_rollback ( resource $conn ) Rolls back a transaction that was begun with sqlsrv_begin_transaction() and returns the connection to auto-commit mode. Parameters: conn The connection resource returned by a call to sqlsrv_connect().

sqlsrv_query

(No version information available, might only be in Git) Prepares and executes a query. mixed sqlsrv_query ( resource $conn, string $sql [, array $params [, array $options ]] ) Prepares and executes a query. Parameters: conn A connection resource returned by sqlsrv_connect(). sql The string that defines the query to be prepared and exec

sqlsrv_prepare

(No version information available, might only be in Git) Prepares a query for execution mixed sqlsrv_prepare ( resource $conn, string $sql [, array $params [, array $options ]] ) Prepares a query for execution. This function is ideal for preparing a query that will be executed multiple times with different parameter values. Parameters: conn A connection resource returned

sqlsrv_num_rows

(No version information available, might only be in Git) Retrieves the number of rows in a result set mixed sqlsrv_num_rows ( resource $stmt ) Retrieves the number of rows in a result set. This function requires that the statment resource be created with a static or keyset cursor. For more information, see sqlsrv_query(), sqlsrv_prepare(), or ยป Specifying a Cursor Type and Selecting Rows in the Microsoft SQLSRV documentation

sqlsrv_num_fields

(No version information available, might only be in Git) Retrieves the number of fields (columns) on a statement mixed sqlsrv_num_fields ( resource $stmt ) Retrieves the number of fields (columns) on a statement. Parameters: stmt The statment for which the number of fields is returned. sqlsrv_num_fields() can be called on a statement before or after statement execution.

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_has_rows

(No version information available, might only be in Git) Indicates whether the specified statement has rows bool sqlsrv_has_rows ( resource $stmt ) Indicates whether the specified statement has rows. Parameters: stmt A statement resource returned by sqlsrv_query() or sqlsrv_execute(). Returns: Returns TRUE if the specified statement has rows and