sybase_affected_rows

(PHP 4, PHP 5, PHP 7) Gets number of affected rows in last query int sybase_affected_rows ([ resource $link_identifier ] ) sybase_affected_rows() returns the number of rows affected by the last INSERT, UPDATE or DELETE query on the server associated with the specified link identifier. This command is not effective for SELECT statements, only on statements which modify records. To retrieve the number of rows returned from a

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

sqlsrv_get_config

(No version information available, might only be in Git) Returns the value of the specified configuration setting mixed sqlsrv_get_config ( string $setting ) Returns the value of the specified configuration setting. Parameters: setting The name of the setting for which the value is returned. For a list of configurable settings, see sqlsrv_configure().