XWare Поиск по информационным ресурсам МГУ English Russian
       
       Точная форма слов   О проекте   Сайты   Помощь
Поиск по:old.master.cmc.msu.ru   - Поискать по всем серверам
На этой странице приведены все страницы сервера old.master.cmc.msu.ru ,которые мы индексируем. Показаны документы 1061 - 1080 из 3519.

В начало ] Пред. | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | След.В конец ]

Упорядочить по: URL  |  дате изменения
1061. pg_escape_string
. PHP Manual . Prev . Next . (PHP 4 CVS only) pg_escape_string -- Escape string for text/char type . string pg_escape_string ( string data) . pg_escape_string() escapes string for text/char datatype. It returns escaped string. Note: This function is requires PostgreSQL 7.2 or later. See also pg_escape_bytea() . Prev . Home . Next . pg_escape_bytea . Up . pg_lo_seek
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pg-escape-string.html -- 3.6 Кб -- 03.02.2002
Похожие документы

1062. pg_copy_to
. PHP Manual . Prev . Next . (PHP 4 CVS only) pg_copy_to -- Copy table to array . int pg_copy_to ( int connection, string table_name [, string delimiter [, string null_as]]) . pg_copy_to() copy table to array. The result array is returned if it success to copy. Otherwise it returns FALSE . See also pg_copy_from() . Prev . Home . Next . pg_copy_from . Up . pg_escape_bytea
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pg-copy-to.html -- 3.5 Кб -- 03.02.2002
Похожие документы

1063. pg_copy_from
. PHP Manual . Prev . Next . (PHP 4 CVS only) pg_copy_from -- Copy table from array . int pg_copy_from ( int connection, string table_name, array rows [, string delimiter [, string null_as]]) . pg_copy_from() copy table from array. It return TRUE for success, otherwise FALSE . See also pg_copy_to() . Prev . Home . Next . pg_connection_status . Up . pg_copy_to
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pg-copy-from.html -- 3.5 Кб -- 03.02.2002
Похожие документы

1064. pg_connection_reset
. PHP Manual . Prev . Next . (PHP 4 CVS only) pg_connection_reset -- Reset connection (reconnect) . bool pg_connection_reset ( resource connection) . pg_connection_reset() reset connection with the same parameter when connection is made. It is useful for error recovery. It returns TRUE if it resets connection successfully, otherwise returns FALSE . See also pg_connect() , pg_pconnect() and pg_connection_status() . Prev . Home . Next . pg_connection_busy . Up . pg_connection_status
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pg-connection-reset.html -- 3.9 Кб -- 03.02.2002
Похожие документы

1065. pg_connection_status
. PHP Manual . Prev . Next . (PHP 4 CVS only) pg_connection_status -- Get connection status . int pg_connection_status ( resource connection) . pg_connection_status() returns a connection status. Possible status is PGSQL_CONNECTION_O or PGSQL_CONNECTION_BAD . See also pg_connection_busy() . Prev . Home . Next . pg_connection_reset . Up . pg_copy_from
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pg-connection-status.html -- 3.6 Кб -- 03.02.2002
Похожие документы

1066. pg_connection_busy
. PHP Manual . Prev . Next . (PHP 4 CVS only) pg_connection_busy -- Get connection is busy or not . bool pg_connection_busy ( resource connection) . pg_connection_busy() returns TRUE if connection busy. If connection is busy, previously sent query to PostgreSQL server is still executing. If pg_get_result() is called, pg_get_result() will block. See also pg_connection_status() and pg_get_result() . Prev . Home . Next . pg_cancel_query . Up . pg_connection_reset
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pg-connection-busy.html -- 3.9 Кб -- 03.02.2002
Похожие документы

1067. pg_cancel_query
. PHP Manual . Prev . Next . (PHP 4 CVS only) pg_cancel_query -- Cancel async query . bool pg_cancel_query ( resource connection) . pg_cancel_query() cancel asynchronous query sent by pg_send_query() . You cannot cancel query executed by pg_query() . See also pg_send_query() , pg_cancel_result() and pg_connection_busy() . Prev . Home . Next . pg_send_query . Up . pg_connection_busy
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pg-cancel-query.html -- 3.7 Кб -- 03.02.2002
Похожие документы

1068. pg_send_query
... PHP 4 CVS only) pg_send_query -- Send asynchronous query . bool pg_send_query ( resource connection, string query)bool pg_send_query ( string query) . pg_send_query() send asynchronous query to the connection . ... Use pg_connection_busy() to check connection is busy (i.e. query is executing) Query may be canceled by calling pg_cancel_query() . ... User cannot send multiple query over busy connection. ... See also pg_query() , pg_cancel_query() , pg_get_result() and pg_connection_busy() . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pg-send-query.html -- 4.6 Кб -- 03.02.2002
Похожие документы

1069. pg_result_status
. PHP Manual . Prev . Next . (PHP 4 CVS only) pg_result_status -- Get status of query result . int pg_result_status ( resource result) . pg_result_status() returns status of result resource. Possible retun values are PGSQL_EMPTY_QUERY, PGSQL_COMMAND_OK, PGSQL_TUPLES_OK, PGSQL_COPY_TO, PGSQL_COPY_FROM, PGSQL_BAD_RESPONSE, PGSQL_NONFATAL_ERROR and PGSQL_FATAL_ERROR. See also pgsql_connection_status() . Prev . Home . Next . pg_get_result . Up . pg_send_query
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pg-result-status.html -- 3.5 Кб -- 03.02.2002
Похожие документы

1070. pg_get_result
. PHP Manual . Prev . Next . (PHP 4 CVS only) pg_get_result -- Get asynchronous query result . resource pg_get_result ( [resource connection]) . pg_get_result() get result resource from async query executed by pg_send_query() . pg_send_query() can send multiple queries to PostgreSQL server and pg_get_result() is used to get query result one by one. It returns result resource. If there is no more results, it returns FALSE . Prev . Home . Next . pg_untrace . Up . pg_result_status
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pg-get-result.html -- 3.7 Кб -- 03.02.2002
Похожие документы

1071. pg_untrace
. PHP Manual . Prev . Next . (PHP 4 ) pg_untrace -- Disable tracing of a PostgreSQL connection . bool pg_untrace ( [resource connection]) . Stop tracing started by pg_trace() . connection specifies the connection that was traced and defaults to the last one opened. Returns always TRUE . See also pg_trace() . Prev . Home . Next . pg_tty . Up . pg_get_result
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pg-untrace.html -- 3.5 Кб -- 03.02.2002
Похожие документы

1072. pg_trace
... PHP 4 ) pg_trace -- Enable tracing a PostgreSQL connection . bool pg_trace ( string pathname [, string mode [, resource connection]]) . pg_trace() enables tracing of the PostgreSQL frontend/backend communication to a debugging file specified as pathname . ... Filename and mode are the same as in fopen() ( mode defaults to 'w'), connection specifies the connection to trace and defaults to the last one opened. It returns TRUE if pathname could be opened for logging, FALSE otherwise. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pg-trace.html -- 4.6 Кб -- 03.02.2002
Похожие документы

1073. pg_tty
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) pg_tty -- Return the tty name associated with the connection . string pg_tty ( resource connection) . pg_tty() returns the tty name that server side debugging output is sent to on the given PostgreSQL connection resource. Prev . Home . Next . pg_trace . Up . pg_untrace
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pg-tty.html -- 3.3 Кб -- 03.02.2002
Похожие документы

1074. pg_client_encoding
PHP Manual . ... Next . PHP 4 >= 4.0.3) pg_client_encoding -- Get the client encoding . string pg_client_encoding ( [resource connection]) . pg_client_encoding() returns the client encoding as the string. ... Note: This function requires PHP-4.0.3 or higher and PostgreSQL-7.0 or higher. If libpq is compiled without multibyte encoding support, pg_set_client_encoding() always return "SQL_ASCII". ... See also pg_set_client_encoding() . ... pg_set_client_encoding . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pg-client-encoding.html -- 4.3 Кб -- 03.02.2002
Похожие документы

1075. pg_result
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) pg_result -- Returns values from a result resource . mixed pg_result ( resource result, int row_number, mixed field) . pg_result() returns values from a result resource returned by pg_exec() . row_number is integer. field is field name(string) or field index (integer). The row_number and field specify what cell in the table of results to return. ... All forms of integer , boolean and void types are returned as integer values. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pg-result.html -- 4.6 Кб -- 03.02.2002
Похожие документы

1076. pg_set_client_encoding
PHP Manual . ... PHP 4 >= 4.0.3) pg_set_client_encoding -- Set the client encoding . ... pg_set_client_encoding() sets the client encoding and return 0 if success or -1 if error. encoding is the client encoding and can be either : SQL_ASCII, EUC_JP, EUC_CN, EUC_KR, EUC_TW, UNICODE, MULE_INTERNAL, LATINX (X=1.. ... Available encoding depends on your PostgreSQL and libpq version. ... Note: This function requires PHP-4.0.3 or higher and PostgreSQL-7.0 or higher. ... See also pg_client_encoding() . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pg-set-client-encoding.html -- 4.3 Кб -- 03.02.2002
Похожие документы

1077. pg_put_line
PHP Manual . ... PHP 4 >= 4.0.3) pg_put_line -- Send a NULL-terminated string to PostgreSQL backend . bool pg_put_line ( [resource connection, string data]) . ... High-speed insertion of data into a table . php $conn = pg_pconnect ("dbname=foo"); pg_exec($conn, "create table bar (a int4, b char(16), d float8)"); pg_exec($conn, "copy bar from stdin"); pg_put_line($conn, "3\thello world\t4.5\n"); pg_put_line($conn, "4\tgoodbye world\t7.11\n"); pg_put_line($conn, "\\.\n"); pg_end_copy($conn); ?> ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pg-put-line.html -- 4.6 Кб -- 03.02.2002
Похожие документы

1078. pg_port
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) pg_port -- Return the port number associated with the connection . int pg_port ( resource connection) . pg_port() returns the port number that the given PostgreSQL connection resource is connected to. Prev . Home . Next . pg_pconnect . Up . pg_put_line
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pg-port.html -- 3.3 Кб -- 03.02.2002
Похожие документы

1079. pg_pconnect
... pg_pconnect() opens a connection to a PostgreSQL database. ... The arguments available include host , port , tty , options , dbname , user , and password . ... Using pg_pconnect . php $dbconn = pg_connect ( dbname = mary ); //connect to a database named mary $dbconn2 = pg_connect ( host =localhost port = 5432 dbname = mary ); // connect to a database named mary on localhost at port 5432 $dbconn3 = pg_connect ( host =sheep port = 5432 dbname = mary user=lamb ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pg-pconnect.html -- 6.2 Кб -- 03.02.2002
Похожие документы

1080. pg_options
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) pg_options -- Get the options associated with the connection . string pg_options ( resource connection) . pg_options() will return a string containing the options specified on the given PostgreSQL connection resource. Prev . Home . Next . pg_numrows . Up . pg_pconnect
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pg-options.html -- 3.4 Кб -- 03.02.2002
Похожие документы

В начало ] Пред. | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | След.В конец ]

Rambler's Top100 RFBR Яндекс цитирования