sybase_fetch_field

(PHP 4, PHP 5, PHP 7) Get field information from a result object sybase_fetch_field ( resource $result [, int $field_offset = -1 ] ) sybase_fetch_field() can be used in order to obtain information about fields in a certain query result. Parameters: result sybase_fetch_field() can be used in order to obtain information about fields in a certain query result.

sybase_deadlock_retry_count

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Sets the deadlock retry count void sybase_deadlock_retry_count ( int $retry_count ) Using sybase_deadlock_retry_count(), the number of retries can be defined in cases of deadlocks. By default, every deadlock is retried an infinite number of times or until the process is killed by Sybase, the executing script is killed (for instance, by set_time_limit()) or the query succeeds.

sybase_fetch_array

(PHP 4, PHP 5, PHP 7) Fetch row as array array sybase_fetch_array ( resource $result ) sybase_fetch_array() is an extended version of sybase_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 thing to note is that using sybase_fetch_array() is NOT significantly slower than using sybase_fetch_row

sybase_fetch_row

(PHP 4, PHP 5, PHP 7) Get a result row as an enumerated array array sybase_fetch_row ( resource $result ) sybase_fetch_row() fetches one row of data from the result associated with the specified result identifier. Subsequent call to sybase_fetch_row() would return the next row in the result set, or FALSE if there are no more rows. Parameters: result sybase_fetch_row() f

sybase_fetch_object

(PHP 4, PHP 5, PHP 7) Fetch a row as an object object sybase_fetch_object ( resource $result [, mixed $object ] ) sybase_fetch_object() is similar to sybase_fetch_assoc(), with one difference - an object is returned, instead of an array. Speed-wise, the function is identical to sybase_fetch_array(), and almost as quick as sybase_fetch_row() (the difference is insignificant). Parameters:

sybase_fetch_assoc

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Fetch a result row as an associative array array sybase_fetch_assoc ( resource $result ) sybase_fetch_assoc() is a version of sybase_fetch_row() that uses column names instead of integers for indices in the result array. Columns from different tables with the same names are returned as name, name1, name2, ..., nameN. An important thing to note is that using sybase_fetch_assoc() is NOT sign

sybase_data_seek

(PHP 4, PHP 5, PHP 7) Moves internal row pointer bool sybase_data_seek ( resource $result_identifier, int $row_number ) sybase_data_seek() moves the internal row pointer of the Sybase result associated with the specified result identifier to pointer to the specified row number. The next call to sybase_fetch_row() would return that row. Parameters: result_identifier sybase

sybase_close

(PHP 4, PHP 5, PHP 7) Closes a Sybase connection bool sybase_close ([ resource $link_identifier ] ) sybase_close() closes the link to a Sybase database that's associated with the specified link link_identifier. Note that this isn't usually necessary, as non-persistent open links are automatically closed at the end of the script's execution. sybase_close() will not close persistent links generated by sybase_pconnect().

sybase_connect

(PHP 4, PHP 5, PHP 7) Opens a Sybase server connection resource sybase_connect ([ string $servername [, string $username [, string $password [, string $charset [, string $appname [, bool $new = false ]]]]]] ) sybase_connect() establishes a connection to a Sybase server. In case a second call is made to sybase_connect() with the same arguments, no new link will be established, but instead, the link identifier of the alread

sqlsrv_server_info

(No version information available, might only be in Git) Returns information about the server array sqlsrv_server_info ( resource $conn ) Returns information about the server. Parameters: conn The connection resource that connects the client and the server. Returns: Returns an array as described in the following table: Returned Array CurrentData