mssql_result

(PHP 4, PHP 5, PECL odbtp >= 1.1.1) Get result data string mssql_result ( resource $result, int $row, mixed $field ) mssql_result() returns the contents of one cell from a MS SQL result set. Parameters: result The result resource that is being evaluated. This result comes from a call to mssql_query(). row The row number.

mssql_pconnect

(PHP 4, PHP 5, PECL odbtp >= 1.1.1) Open persistent MS SQL connection resource mssql_pconnect ([ string $servername [, string $username [, string $password [, bool $new_link = false ]]]] ) mssql_pconnect() acts very much like mssql_connect() with two major differences. First, when connecting, the function would first try to find a (persistent) link that's already open with the same host, username and password. If one i

mssql_rows_affected

(PHP 4 >= 4.0.4, PHP 5, PECL odbtp >= 1.1.1) Returns the number of records affected by the query int mssql_rows_affected ( resource $link_identifier ) Returns the number of records affected by the last write query. Parameters: link_identifier A MS SQL link identifier, returned by mssql_connect() or mssql_pconnect(). Returns: Returns the num

mssql_next_result

(PHP 4 >= 4.0.5, PHP 5, PECL odbtp >= 1.1.1) Move the internal result pointer to the next result bool mssql_next_result ( resource $result_id ) When sending more than one SQL statement to the server or executing a stored procedure with multiple results, it will cause the server to return multiple result sets. This function will test for additional results available form the server. If an additional result set exists it

mssql_min_error_severity

(PHP 4, PHP 5, PECL odbtp >= 1.1.1) Sets the minimum error severity void mssql_min_error_severity ( int $severity ) Sets the minimum error severity. Parameters: severity The new error severity. Returns: No value is returned. Examples: mssql_min_error_severity() example

mssql_num_fields

(PHP 4, PHP 5, PECL odbtp >= 1.1.1) Gets the number of fields in result int mssql_num_fields ( resource $result ) mssql_num_fields() returns the number of fields in a result set. Parameters: result The result resource that is being evaluated. This result comes from a call to mssql_query(). Returns: Returns the number of fields, as an integer.

mssql_init

(PHP 4 >= 4.0.7, PHP 5, PECL odbtp >= 1.1.1) Initializes a stored procedure or a remote stored procedure resource mssql_init ( string $sp_name [, resource $link_identifier ] ) Initializes a stored procedure or a remote stored procedure. Parameters: sp_name Stored procedure name, like ownew.sp_name or otherdb.owner.sp_name. link_identifier

mssql_min_message_severity

(PHP 4, PHP 5, PECL odbtp >= 1.1.1) Sets the minimum message severity void mssql_min_message_severity ( int $severity ) Sets the minimum message severity. Parameters: severity The new message severity. Returns: No value is returned. Examples: mssql_min_message_severity() example

mssql_guid_string

(PHP 4 >= 4.0.7, PHP 5, PECL odbtp >= 1.1.1) Converts a 16 byte binary GUID to a string string mssql_guid_string ( string $binary [, bool $short_format = false ] ) Converts a 16 byte binary GUID to a string. Parameters: binary A 16 byte binary GUID. short_format Whenever to use short format. Returns: Ret

mssql_num_rows

(PHP 4, PHP 5, PECL odbtp >= 1.1.1) Gets the number of rows in result int mssql_num_rows ( resource $result ) mssql_num_rows() returns the number of rows in a result set. Parameters: result The result resource that is being evaluated. This result comes from a call to mssql_query(). Returns: Returns the number of rows, as an integer.