php_mssql.pir - PHP mssql Library
bool mssql_bind(resource stmt, string param_name, mixed var, int type [, int is_output [, int is_null [, int maxlen]]])
- Adds a parameter to a stored procedure or a remote stored procedure
- NOT IMPLEMENTED.
bool mssql_close([resource conn_id])
- Closes a connection to a MS-SQL server
- NOT IMPLEMENTED.
int mssql_connect([string servername [, string username [, string password [, bool new_link]]])
- Establishes a connection to a MS-SQL server
- NOT IMPLEMENTED.
bool mssql_data_seek(resource result_id, int offset)
- Moves the internal row pointer of the MS-SQL result associated with the specified result identifier to pointer to the specified row number
- NOT IMPLEMENTED.
mixed mssql_execute(resource stmt [, bool skip_results = false])
- Executes a stored procedure on a MS-SQL server database
- NOT IMPLEMENTED.
array mssql_fetch_array(resource result_id [, int result_type])
- Returns an associative array of the current row in the result set specified by result_id
- NOT IMPLEMENTED.
array mssql_fetch_assoc(resource result_id)
- Returns an associative array of the current row in the result set specified by result_id
- NOT IMPLEMENTED.
int mssql_fetch_batch(resource result_index)
- Returns the next batch of records
- NOT IMPLEMENTED.
object mssql_fetch_field(resource result_id [, int offset])
- Gets information about certain fields in a query result
- NOT IMPLEMENTED.
object mssql_fetch_object(resource result_id [, int result_type])
- Returns a psuedo-object of the current row in the result set specified by result_id
- NOT IMPLEMENTED.
array mssql_fetch_row(resource result_id)
- Returns an array of the current row in the result set specified by result_id
- NOT IMPLEMENTED.
int mssql_field_length(resource result_id [, int offset])
- Get the length of a MS-SQL field
- NOT IMPLEMENTED.
string mssql_field_name(resource result_id [, int offset])
- Returns the name of the field given by offset in the result set given by result_id
- NOT IMPLEMENTED.
bool mssql_field_seek(int result_id, int offset)
- Seeks to the specified field offset
- NOT IMPLEMENTED.
string mssql_field_type(resource result_id [, int offset])
- Returns the type of a field
- NOT IMPLEMENTED.
bool mssql_free_result(resource result_index)
- Free a MS-SQL result index
- NOT IMPLEMENTED.
bool mssql_free_statement(resource result_index)
- Free a MS-SQL statement index
- NOT IMPLEMENTED.
string mssql_get_last_message(void)
- Gets the last message from the MS-SQL server
- NOT IMPLEMENTED.
string mssql_guid_string(string binary [,int short_format])
- Converts a 16 byte binary GUID to a string
- NOT IMPLEMENTED.
int mssql_init(string sp_name [, resource conn_id])
- Initializes a stored procedure or a remote stored procedure
- NOT IMPLEMENTED.
void mssql_min_error_severity(int severity)
- Sets the lower error severity
- NOT IMPLEMENTED.
void mssql_min_message_severity(int severity)
- Sets the lower message severity
- NOT IMPLEMENTED.
bool mssql_next_result(resource result_id)
- Move the internal result pointer to the next result
- NOT IMPLEMENTED.
int mssql_num_fields(resource mssql_result_index)
- Returns the number of fields fetched in from the result id specified
- NOT IMPLEMENTED.
int mssql_num_rows(resource mssql_result_index)
- Returns the number of rows fetched in from the result id specified
- NOT IMPLEMENTED.
int mssql_pconnect([string servername [, string username [, string password [, bool new_link]]]])
- Establishes a persistent connection to a MS-SQL server
- NOT IMPLEMENTED.
resource mssql_query(string query [, resource conn_id [, int batch_size]])
- Perform an SQL query on a MS-SQL server database
- NOT IMPLEMENTED.
string mssql_result(resource result_id, int row, mixed field)
- Returns the contents of one cell from a MS-SQL result set
- NOT IMPLEMENTED.
int mssql_rows_affected(resource conn_id)
- Returns the number of records affected by the query
- NOT IMPLEMENTED.
bool mssql_select_db(string database_name [, resource conn_id])
- Select a MS-SQL database
- NOT IMPLEMENTED.