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_query

(PHP 4, PHP 5, PECL odbtp >= 1.1.1) Send MS SQL query mixed mssql_query ( string $query [, resource $link_identifier [, int $batch_size = 0 ]] ) mssql_query() sends a query to the currently active database on the server that's associated with the specified link identifier. Parameters: query An SQL query. link_identifier A MS SQL lin

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

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