mssql_field_type

(PHP 4, PHP 5, PECL odbtp >= 1.1.1) Gets the type of a field string mssql_field_type ( resource $result [, int $offset = -1 ] ) Returns the type of field no. offset in result. Parameters: result The result resource that is being evaluated. This result comes from a call to mssql_query(). offset The field offset, starts at 0. If omitt

mssql_free_statement

(PHP 4 >= 4.3.2, PHP 5, PECL odbtp >= 1.1.1) Free statement memory bool mssql_free_statement ( resource $stmt ) mssql_free_statement() only needs to be called if you are worried about using too much memory while your script is running. All statement memory will automatically be freed when the script ends. You may call mssql_free_statement() with the statement identifier as an argument and the associated statement memor

mssql_free_result

(PHP 4, PHP 5, PECL odbtp >= 1.1.1) Free result memory bool mssql_free_result ( resource $result ) mssql_free_result() only needs to be called if you are worried about using too much memory while your script is running. All result memory will automatically be freed when the script ends. You may call mssql_free_result() with the result identifier as an argument and the associated result memory will be freed.

mssql_field_name

(PHP 4, PHP 5, PECL odbtp >= 1.1.1) Get the name of a field string mssql_field_name ( resource $result [, int $offset = -1 ] ) Returns the name of field no. offset in result. Parameters: result The result resource that is being evaluated. This result comes from a call to mssql_query(). offset The field offset, starts at 0. If omitte

mssql_field_seek

(PHP 4, PHP 5, PECL odbtp >= 1.1.1) Seeks to the specified field offset bool mssql_field_seek ( resource $result, int $field_offset ) Seeks to the specified field offset. If the next call to mssql_fetch_field() won't include a field offset, this field would be returned. Parameters: result The result resource that is being evaluated. This result comes from a call to mss

mssql_get_last_message

(PHP 4, PHP 5, PECL odbtp >= 1.1.1) Returns the last message from the server string mssql_get_last_message ( void ) Gets the last message from the MS-SQL server Returns: Returns last error message from server, or an empty string if no error messages are returned from MSSQL. Examples: mssql_get_last_message() example &l

mssql_fetch_row

(PHP 4, PHP 5, PECL odbtp >= 1.1.1) Get row as enumerated array array mssql_fetch_row ( resource $result ) mssql_fetch_row() fetches one row of data from the result associated with the specified result identifier. The row is returned as an array. Each result column is stored in an array offset, starting at offset 0. Subsequent call to mssql_fetch_row() would return the next row in the result set, or FALSE if there are n

mssql_fetch_object

(PHP 4, PHP 5, PECL odbtp >= 1.1.1) Fetch row as object object mssql_fetch_object ( resource $result ) mssql_fetch_object() is similar to mssql_fetch_array(), with one difference - an object is returned, instead of an array. Indirectly, that means that you can only access the data by the field names, and not by their offsets (numbers are illegal property names). Speed-wise, the function is identical to mssql_fetch_array

mssql_field_length

(PHP 4, PHP 5, PECL odbtp >= 1.1.1) Get the length of a field int mssql_field_length ( resource $result [, int $offset = -1 ] ) Returns the length of field no. offset in result. Parameters: result The result resource that is being evaluated. This result comes from a call to mssql_query(). offset The field offset, starts at 0. If omi

mssql_fetch_field

(PHP 4, PHP 5, PECL odbtp >= 1.1.1) Get field information object mssql_fetch_field ( resource $result [, int $field_offset = -1 ] ) mssql_fetch_field() can be used in order to obtain information about fields in a certain query result. Parameters: result The result resource that is being evaluated. This result comes from a call to mssql_query().