Поиск по:old.hcs.cmc.msu.ru -
Поискать по всем серверам
На этой странице приведены все страницы сервера old.hcs.cmc.msu.ru ,которые мы индексируем. Показаны документы 1461 - 1480 из 3520.
Упорядочить по:
URL
|
дате изменения
1461. odbc_pconnect
PHP Manual . ... 3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) odbc_pconnect -- Open a persistent database connection . int odbc_pconnect ( string dsn, string user, string password [, int cursor_type]) . ... This function is much like odbc_connect() , except that the connection is not really closed when the script has finished. Future requests for a connection with the same dsn , user , password combination (via odbc_connect() and odbc_pconnect() ) can reuse the persistent connection. ...
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.odbc-pconnect.html -- 4.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
1462. odbc_free_result
PHP Manual . ... Next . 3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) odbc_free_result -- Free resources associated with a result . int odbc_free_result ( int result_id) . ... odbc_free_result() only needs to be called if you are worried about using too much memory while your script is running. ... But, if you are sure you are not going to need the result data anymore in a script, you may call odbc_free_result() , and the memory associated with result_id will be freed. ...
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.odbc-free-result.html -- 4.2 Кб -- 03.02.2002
Похожие документы
Похожие документы
1463. odbc_longreadlen
. PHP Manual . Prev . Next . (3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) odbc_longreadlen -- Handling of LONG columns . int odbc_longreadlen ( int result_id, int length) . (ODBC SQL types affected: LONG, LONGVARBINARY) The number of bytes returned to PHP is controled by the parameter length. If it is set to 0, Long column data is passed thru to the client. Note: Handling of LONGVARBINARY columns is also affected by odbc_binmode() . Prev . Home . Next . odbc_free_result . Up . odbc_num_fields
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.odbc-longreadlen.html -- 3.7 Кб -- 03.02.2002
Похожие документы
Похожие документы
1464. odbc_field_precision
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) odbc_field_precision -- Synonym for odbc_field_len() . string odbc_field_precision ( int result_id, int field_number) . odbc_field_precision() will return the precision of the field referecend by number in the given ODBC result identifier. See also: odbc_field_scale() to get the scale of a floating point number. Prev . Home . Next . odbc_field_len . Up . odbc_field_scale
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.odbc-field-precision.html -- 3.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
1465. odbc_field_scale
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) odbc_field_scale -- Get the scale of a field . string odbc_field_scale ( int result_id, int field_number) . odbc_field_precision() will return the scale of the field referecend by number in the given ODBC result identifier. Prev . Home . Next . odbc_field_precision . Up . odbc_free_result
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.odbc-field-scale.html -- 3.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
1466. odbc_field_len
. PHP Manual . Prev . Next . (3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) odbc_field_len -- Get the length (precision) of a field . int odbc_field_len ( int result_id, int field_number) . odbc_field_len() will return the length of the field referecend by number in the given ODBC result identifier. Field numbering starts at 1. See also: odbc_field_scale() to get the scale of a floating point number. Prev . Home . Next . odbc_field_type . Up . odbc_field_precision
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.odbc-field-len.html -- 3.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
1467. odbc_field_type
. PHP Manual . Prev . Next . (3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) odbc_field_type -- Datatype of a field . string odbc_field_type ( int result_id, int field_number) . odbc_field_type() will return the SQL type of the field referecend by number in the given ODBC result identifier. Field numbering starts at 1. Prev . Home . Next . odbc_field_num . Up . odbc_field_len
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.odbc-field-type.html -- 3.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
1468. odbc_field_name
. PHP Manual . Prev . Next . (3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) odbc_field_name -- Get the columnname . string odbc_field_name ( int result_id, int field_number) . odbc_field_name() will return the name of the field occupying the given column number in the given ODBC result identifier. Field numbering starts at 1. FALSE is returned on error. Prev . Home . Next . odbc_fetch_object . Up . odbc_field_num
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.odbc-field-name.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
1469. odbc_field_num
. PHP Manual . Prev . Next . (3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) odbc_field_num -- Return column number . int odbc_field_num ( int result_id, string field_name) . odbc_field_num() will return the number of the column slot that corresponds to the named field in the given ODBC result identifier. Field numbering starts at 1. FALSE is returned on error. Prev . Home . Next . odbc_field_name . Up . odbc_field_type
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.odbc-field-num.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
1470. odbc_fetch_object
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.2) odbc_fetch_object -- Fetch a result row as an object . object odbc_fetch_object ( int result [, int rownumber]) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . odbc_next_result . Up . odbc_field_name
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.odbc-fetch-object.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
1471. odbc_next_result
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.5) odbc_next_result -- Checks if multiple results are avaiable . bool odbc_next_result ( int result_id) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . odbc_fetch_array . Up . odbc_fetch_object
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.odbc-next-result.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
1472. odbc_fetch_array
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.2) odbc_fetch_array -- Fetch a result row as an associative array . array odbc_fetch_array ( int result [, int rownumber]) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . odbc_fetch_row . Up . odbc_next_result
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.odbc-fetch-array.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
1473. odbc_fetch_row
PHP Manual . ... 3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) odbc_fetch_row -- Fetch a row . int odbc_fetch_row ( int result_id [, int row_number]) . If odbc_fetch_row() was succesful (there was a row), TRUE is returned. ... If row_number is not specified, odbc_fetch_row() will try to fetch the next row in the result set. ... To step through the result more than once, you can call odbc_fetch_row() with row_number 1, and then continue doing odbc_fetch_row() without row_number to review the result. ...
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.odbc-fetch-row.html -- 4.7 Кб -- 03.02.2002
Похожие документы
Похожие документы
1474. odbc_execute
. PHP Manual . Prev . Next . (3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) odbc_execute -- Execute a prepared statement . int odbc_execute ( int result_id [, array parameters_array]) . Executes a statement prepared with odbc_prepare() . Returns TRUE on successful execution, FALSE otherwise. The array parameters_array only needs to be given if you really have parameters in your statement. Prev . Home . Next . odbc_exec . Up . odbc_fetch_into
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.odbc-execute.html -- 3.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
1475. odbc_fetch_into
... 3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) odbc_fetch_into -- Fetch one result row into array . int odbc_fetch_into ( int result_id [, int rownumber, array result_array]) . ... Example 1. odbc_fetch_into() pre 4.0.6 example . rc = odbc_fetch_into($res_id, $my_array); . ... Future: In PHP 4.1, this function will be moved to the following format: int odbc_fetch_into ( int result_id, array result_array [, int rownumber]) Please note, that rownumber will be optional, while result_array is not. ...
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.odbc-fetch-into.html -- 5.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
1476. odbc_errormsg
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.5) odbc_errormsg -- Get the last error message . string odbc_errormsg ( [int connection_id]) . Returns a string containing the last ODBC error message, or an empty string if there has been no errors. If connection_id is specified, the last state of that connection is returned, else the last state of any connection is returned. See also: odbc_error() and odbc_exec() . Prev . Home . Next . odbc_error . Up . odbc_exec
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.odbc-errormsg.html -- 3.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
1477. odbc_exec
PHP Manual . Prev . Next . 3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) odbc_exec -- Prepare and execute a SQL statement . int odbc_exec ( int connection_id, string query_string) . Returns FALSE on error. Returns an ODBC result identifier if the SQL command was executed successfully. odbc_exec() will send an SQL statement to the database server specified by connection_id . ... See also: odbc_prepare() and odbc_execute() for multiple execution of SQL statements. ... odbc_execute ...
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.odbc-exec.html -- 4.0 Кб -- 03.02.2002
Похожие документы
Похожие документы
1478. odbc_do
. PHP Manual . Prev . Next . (3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) odbc_do -- Synonym for odbc_exec() . int odbc_do ( int conn_id, string query) . odbc_do() will execute a query on the given connection. Prev . Home . Next . odbc_cursor . Up . odbc_error
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.odbc-do.html -- 3.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
1479. odbc_error
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.5) odbc_error -- Get the last error code . string odbc_error ( [int connection_id]) . Returns a six-digit ODBC state, or an empty string if there has been no errors. If connection_id is specified, the last state of that connection is returned, else the last state of any connection is returned. See also: odbc_errormsg() and odbc_exec() . Prev . Home . Next . odbc_do . Up . odbc_errormsg
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.odbc-error.html -- 3.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
1480. odbc_connect
... 3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) odbc_connect -- Connect to a datasource . int odbc_connect ( string dsn, string user, string password [, int cursor_type]) . Returns an ODBC connection id or 0 ( FALSE ) on error. ... The optional fourth parameter sets the type of cursor to be used for this connection. This parameter is not normally needed, but can be useful for working around problems with some ODBC drivers. ... Using SQL_CUR_USE_ODBC may avoid that error. ... SQL_CUR_USE_ODBC . ...
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.odbc-connect.html -- 4.6 Кб -- 03.02.2002
Похожие документы
Похожие документы