NAME ^

php_mssql.pir - PHP mssql Library

DESCRIPTION ^

Functions ^

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 procedureNOT IMPLEMENTED.
bool mssql_close([resource conn_id])
Closes a connection to a MS-SQL serverNOT IMPLEMENTED.
int mssql_connect([string servername [, string username [, string password [, bool new_link]]])
Establishes a connection to a MS-SQL serverNOT 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 numberNOT IMPLEMENTED.
mixed mssql_execute(resource stmt [, bool skip_results = false])
Executes a stored procedure on a MS-SQL server databaseNOT 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_idNOT IMPLEMENTED.
array mssql_fetch_assoc(resource result_id)
Returns an associative array of the current row in the result set specified by result_idNOT IMPLEMENTED.
int mssql_fetch_batch(resource result_index)
Returns the next batch of recordsNOT IMPLEMENTED.
object mssql_fetch_field(resource result_id [, int offset])
Gets information about certain fields in a query resultNOT IMPLEMENTED.
object mssql_fetch_object(resource result_id [, int result_type])
Returns a pseudo-object of the current row in the result set specified by result_idNOT IMPLEMENTED.
array mssql_fetch_row(resource result_id)
Returns an array of the current row in the result set specified by result_idNOT IMPLEMENTED.
int mssql_field_length(resource result_id [, int offset])
Get the length of a MS-SQL fieldNOT 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_idNOT IMPLEMENTED.
bool mssql_field_seek(int result_id, int offset)
Seeks to the specified field offsetNOT IMPLEMENTED.
string mssql_field_type(resource result_id [, int offset])
Returns the type of a fieldNOT IMPLEMENTED.
bool mssql_free_result(resource result_index)
Free a MS-SQL result indexNOT IMPLEMENTED.
bool mssql_free_statement(resource result_index)
Free a MS-SQL statement indexNOT IMPLEMENTED.
string mssql_get_last_message(void)
Gets the last message from the MS-SQL serverNOT IMPLEMENTED.
string mssql_guid_string(string binary [,int short_format])
Converts a 16 byte binary GUID to a stringNOT IMPLEMENTED.
int mssql_init(string sp_name [, resource conn_id])
Initializes a stored procedure or a remote stored procedureNOT IMPLEMENTED.
void mssql_min_error_severity(int severity)
Sets the lower error severityNOT IMPLEMENTED.
void mssql_min_message_severity(int severity)
Sets the lower message severityNOT IMPLEMENTED.
bool mssql_next_result(resource result_id)
Move the internal result pointer to the next resultNOT IMPLEMENTED.
int mssql_num_fields(resource mssql_result_index)
Returns the number of fields fetched in from the result id specifiedNOT IMPLEMENTED.
int mssql_num_rows(resource mssql_result_index)
Returns the number of rows fetched in from the result id specifiedNOT IMPLEMENTED.
int mssql_pconnect([string servername [, string username [, string password [, bool new_link]]]])
Establishes a persistent connection to a MS-SQL serverNOT IMPLEMENTED.
resource mssql_query(string query [, resource conn_id [, int batch_size]])
Perform an SQL query on a MS-SQL server databaseNOT IMPLEMENTED.
string mssql_result(resource result_id, int row, mixed field)
Returns the contents of one cell from a MS-SQL result setNOT IMPLEMENTED.
int mssql_rows_affected(resource conn_id)
Returns the number of records affected by the queryNOT IMPLEMENTED.
bool mssql_select_db(string database_name [, resource conn_id])
Select a MS-SQL databaseNOT IMPLEMENTED.


parrot