mssql_fetch_batch

(PHP 4 >= 4.0.4, PHP 5, PECL odbtp >= 1.1.1) Returns the next batch of records int mssql_fetch_batch ( resource $result ) Returns the next batch of records. Parameters: result The result resource that is being evaluated. This result comes from a call to mssql_query(). Returns: Returns the number of rows in the returned batch.

mssql_fetch_assoc

(PHP 4 >= 4.2.0, PHP 5, PECL odbtp >= 1.1.1) Returns an associative array of the current row in the result array mssql_fetch_assoc ( resource $result_id ) Returns an associative array that corresponds to the fetched row and moves the internal data pointer ahead. mssql_fetch_assoc() is equivalent to calling mssql_fetch_array() with MSSQL_ASSOC for the optional second parameter. Parameters:

mssql_fetch_array

(PHP 4, PHP 5, PECL odbtp >= 1.1.1) Fetch a result row as an associative array, a numeric array, or both array mssql_fetch_array ( resource $result [, int $result_type = MSSQL_BOTH ] ) mssql_fetch_array() is an extended version of mssql_fetch_row(). In addition to storing the data in the numeric indices of the result array, it also stores the data in associative indices, using the field names as keys. An important thin

mssql_execute

(PHP 4 >= 4.0.7, PHP 5, PECL odbtp >= 1.1.1) Executes a stored procedure on a MS SQL server database mixed mssql_execute ( resource $stmt [, bool $skip_results = false ] ) Executes a stored procedure on a MS SQL server database Parameters: stmt Statement handle obtained with mssql_init(). skip_results Whenever to skip the results

mssql_data_seek

(PHP 4, PHP 5, PECL odbtp >= 1.1.1) Moves internal row pointer bool mssql_data_seek ( resource $result_identifier, int $row_number ) mssql_data_seek() moves the internal row pointer of the MS SQL result associated with the specified result identifier to point to the specified row number, first row being number 0. The next call to mssql_fetch_row() would return that row. Parameters:

mssql_connect

(PHP 4, PHP 5, PECL odbtp >= 1.1.1) Open MS SQL server connection resource mssql_connect ([ string $servername [, string $username [, string $password [, bool $new_link = false ]]]] ) mssql_connect() establishes a connection to a MS SQL server. The link to the server will be closed as soon as the execution of the script ends, unless it's closed earlier by explicitly calling mssql_close(). Parameters:

mssql_close

(PHP 4, PHP 5, PECL odbtp >= 1.1.1) Close MS SQL Server connection bool mssql_close ([ resource $link_identifier ] ) Closes the link to a MS SQL Server database that's associated with the specified link identifier. If the link identifier isn't specified, the last opened link is assumed. Note that this isn't usually necessary, as non-persistent open links are automatically closed at the end of the script's execution.

mssql_bind

(PHP 4 >= 4.0.7, PHP 5, PECL odbtp >= 1.1.1) Adds a parameter to a stored procedure or a remote stored procedure bool mssql_bind ( resource $stmt, string $param_name, mixed &$var, int $type [, bool $is_output = false [, bool $is_null = false [, int $maxlen = -1 ]]] ) Binds a parameter to a stored procedure or a remote stored procedure. Parameters: stmt Statem

msql

(PHP 4, PHP 5, PHP 7) Alias of msql_db_query() This function is an alias of msql_db_query().

msql_tablename

(PHP 4, PHP 5, PHP 7) Alias of msql_result() This function is an alias of msql_result().