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

В начало ] Пред. | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | След.В конец ]

Упорядочить по: URL  |  дате изменения
2241. ifx_fieldproperties
... Next . 3.0.3 - 3.0.18 only, PHP 4 >= 4.0.0) ifx_fieldproperties -- List of SQL fieldproperties . array ifx_fieldproperties ( int result_id) . Returns an associative array with fieldnames as key and the SQL fieldproperties as data for a query with result_id . Returns FALSE on error. Returns the Informix SQL fieldproperties of every field in the query as an associative array. ... Informix SQL fieldproperties . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ifx-fieldproperties.html -- 4.3 Кб -- 03.02.2002
Похожие документы

2242. ifx_fieldtypes
... Next . 3.0.3 - 3.0.18 only, PHP 4 >= 4.0.0) ifx_fieldtypes -- List of Informix SQL fields . array ifx_fieldtypes ( int result_id) . Returns an associative array with fieldnames as key and the SQL fieldtypes as data for query with result_id . ... Fieldnames and SQL fieldtypes . types = ifx_fieldtypes ($resultid); if (! isset ($types)) { ... error ... } for ($i = 0; $i < count($types); $i++) { $fname = key($types); printf("%s :\t type = %s\n", $fname, $types[$fname]); next($types); } . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ifx-fieldtypes.html -- 4.0 Кб -- 03.02.2002
Похожие документы

2243. ifx_fetch_row
... 3.0.3 - 3.0.18 only, PHP 4 >= 4.0.0) ifx_fetch_row -- Get row as enumerated array . ... Returns FALSE on error . ... name, $connid, IFX_SCROLL); if (! $ rid ) { ... error ... } $rowcount = ifx_affected_ rows ($ rid ); if ($rowcount 1000) { printf ( Too many rows in result set (%d)\n br , $rowcount); die ( Please restrict your query br \n ); } if (! ifx_do ($ rid )) { ... error ... } $ row = ifx_fetch_row ($ rid , NEXT ); while (is_ array ($ row )) { for(reset($ row ); $fieldname=key...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ifx-fetch-row.html -- 5.8 Кб -- 03.02.2002
Похожие документы

2244. ifx_htmltbl_result
... 3.0.3 - 3.0.18 only, PHP 4 >= 4.0.0) ifx_htmltbl_result -- Formats all rows of a query into a HTML table . ... Formats all rows of the result_id query into a html table. ... name, $connid, IFX_SCROLL); if (! $rid) { ... error ... } $rowcount = ifx_affected_rows ($rid); if ($rowcount > 1000) { printf ("Too many rows in result set (%d)\n<br>", $rowcount); die ("Please restrict your query<br>\n"); } if (! ifx_do($rid) { ... error ... } ifx_htmltbl_result ($rid, "border=\"2\""); ifx_free_result($rid); ....
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ifx-htmltbl-result.html -- 4.3 Кб -- 03.02.2002
Похожие документы

2245. ifx_affected_rows
... 3.0.3 - 3.0.18 only, PHP 4 >= 4.0.0) ifx_affected_rows -- Get number of rows affected by a query . int ifx_affected_rows ( int result_id) . ... Returns the number of rows affected by a query associated with result_id . ... rid = ifx_prepare ("select * from emp where name like " . name, $connid); if (! $rid) { ... error ... } $rowcount = ifx_affected_rows ($rid); if ($rowcount > 1000) { printf ("Too many rows in result set (%d)\n<br>", $rowcount); die ("Please restrict your query<br>\n"); } . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ifx-affected-rows.html -- 4.9 Кб -- 03.02.2002
Похожие документы

2246. ifx_getsqlca
... 3.0.8 - 3.0.18 only, PHP 4 >= 4.0.0) ifx_getsqlca -- Get the contents of sqlca.sqlerrd[0..5] after a query . ... This gives access to the number of affected rows and the serial insert value. ... assume the first column of 'sometable' is a serial */ $qid = ifx_query("insert into sometable values (0, '2nd column', 'another column') ", $connid); if (! $qid) { ... error ... } $sqlca = ifx_getsqlca ($qid); $serial_value = $sqlca["sqlerrd1"]; echo "The serial value of the inserted row is : " . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ifx-getsqlca.html -- 4.9 Кб -- 03.02.2002
Похожие документы

2247. ifx_error
... 3.0.3 - 3.0.18 only, PHP 4 >= 4.0.0) ifx_error -- Returns error code of last Informix call . string ifx_error ( (void);) . The Informix error codes (SQLSTATE & SQLCODE) formatted as follows : . ... N : no more data . ... If the "x" character is anything other than space, SQLSTATE and SQLCODE describe the error in more detail. ... Returns in a string one character describing the general results of a statement and both SQLSTATE and SQLCODE associated with the most recent SQL statement executed. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ifx-error.html -- 4.4 Кб -- 03.02.2002
Похожие документы

2248. ifx_errormsg
. PHP Manual . Prev . Next . (3.0.4 - 3.0.18 only, PHP 4 >= 4.0.0) ifx_errormsg -- Returns error message of last Informix call . string ifx_errormsg ( [int errorcode]) . Returns the Informix error message associated with the most recent Informix error, or, when the optional " errorcode " param is present, the error message corresponding to " errorcode ". See also: ifx_error() . printf("%s\n&lt;br>", ifx_errormsg(-201)); . Prev . Home . Next . ifx_error . Up . ifx_affected_rows
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ifx-errormsg.html -- 3.8 Кб -- 03.02.2002
Похожие документы

2249. ifx_do
. PHP Manual . Prev . Next . (3.0.4 - 3.0.18 only, PHP 4 >= 4.0.0) ifx_do -- Execute a previously prepared SQL-statement . int ifx_do ( int result_id) . Returns TRUE on success, FALSE on error. Executes a previously prepared query or opens a cursor for it. Does NOT free result_id on error. Also sets the real number of ifx_affected_rows() for non-select statements for retrieval by ifx_affected_rows() . See also: ifx_prepare() . There is a example. Prev . Home . Next . ifx_prepare . Up . ifx_error
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ifx-do.html -- 3.8 Кб -- 03.02.2002
Похожие документы

2250. ifx_prepare
... int ifx_prepare ( string query, int conn_id [, int cursor_def, mixed blobidarray]) . Returns a integer result_id for use by ifx_do() . ... If you have BLOB (BYTE or TEXT) columns in the query, you can add a blobidarray parameter containing the corresponding "blob ids", and you should replace those columns with a "?" in the query text. If the contents of the TEXT (or BYTE) column allow it, you can also use "ifx_textasvarchar(1)" and "ifx_byteasvarchar(1)". ... ifx_query . ... ifx_do ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ifx-prepare.html -- 5.1 Кб -- 03.02.2002
Похожие документы

2251. ifx_query
... 3.0.3 - 3.0.18 only, PHP 4 >= 4.0.0) ifx_query -- Send Informix query . int ifx_query ( string query [, int link_identifier [, int cursor_type [, mixed blobidarray]]]) . ... If the link identifier isn't specified, the last opened link is assumed. ... Executes query on connection conn_id . ... If you have BLOB (BYTE or TEXT) columns in an update query, you can add a blobidarray parameter containing the corresponding "blob ids", and you should replace those columns with a "?" in the query text. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ifx-query.html -- 7.4 Кб -- 03.02.2002
Похожие документы

2252. ifx_close
... 3.0.3 - 3.0.18 only, PHP 4 >= 4.0.0) ifx_close -- Close Informix connection . int ifx_close ( [int 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. ifx_close() will not close persistent links generated by ifx_pconnect() . See also: ifx_connect() , and ifx_pconnect() . ... conn_id = ifx_connect ("mydb@ol_srv", "itsme", "mypassword"); ... some queries and stuff ... ifx_close($conn_id); . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ifx-close.html -- 4.4 Кб -- 03.02.2002
Похожие документы

2253. ifx_pconnect
... 3.0.3 - 3.0.18 only, PHP 4 >= 4.0.0) ifx_pconnect -- Open persistent Informix connection . int ifx_pconnect ( [string database [, string userid [, string password]]]) . ... ifx_pconnect() acts very much like ifx_connect() with two major differences. This function behaves exactly like ifx_connect() when PHP is not running as an Apache module. First, when connecting, the function would first try to find a (persistent) link that's already open with the same host, username and password. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ifx-pconnect.html -- 4.5 Кб -- 03.02.2002
Похожие документы

2254. ifx_connect
... 3.0.3 - 3.0.18 only, PHP 4 >= 4.0.0) ifx_connect -- Open Informix server connection . int ifx_connect ( [string database [, string userid [, string password]]]) . ... All of the arguments are optional, and if they're missing, defaults are taken from values supplied in configuration file (ifx.default_host for the host (Informix libraries will use INFORMIXSERVER environment value if not defined), ifx.default_user for user, ifx.default_password for the password (none if not defined). ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ifx-connect.html -- 4.9 Кб -- 03.02.2002
Похожие документы

2255. imap_thread
. PHP Manual . Prev . Next . (PHP 4 >= 4.1.0) imap_thread -- Return threaded by REFERENCES tree . int imap_thread ( int stream_id [, int flags]) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . imap_utf8 . Up . Informix functions
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.imap-thread.html -- 3.4 Кб -- 03.02.2002
Похожие документы

2256. IMAP, POP3 and NNTP functions
... To get these functions to work, you have to compile PHP with --with-imap . ... The underlying c-client library also supports NNTP , POP3 and local mailbox access methods. ... RFC2822 : Standard for ARPA internet text messages. ... imap_alerts -- This function returns all IMAP alert messages (if any) that have occurred during this page request or since the alert stack was reset . ... imap_body -- Read the message body . ... imap_headers -- Returns headers for all messages in a mailbox . ... imap_8bit...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/ref.imap.html -- 14.2 Кб -- 03.02.2002
Похожие документы

2257. imap_utf7_encode
PHP Manual . Prev . Next . 3.0.15 - 3.0.18 only, PHP 4 >= 4.0.0) imap_utf7_encode -- Converts 8bit data to modified UTF-7 text. string imap_utf7_encode ( string data) . Converts 8bit data to modified UTF-7 text. ... The modified UTF-7 encoding is defined in RFC 2060 , section 5.1.3 (original UTF-7 was defned in RFC1642 ). Returns the modified UTF-7 text. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.imap-utf7-encode.html -- 3.7 Кб -- 03.02.2002
Похожие документы

2258. imap_utf8
. PHP Manual . Prev . Next . (3.0.13 - 3.0.18 only, PHP 4 >= 4.0.0) imap_utf8 -- Converts text to UTF8 . string imap_utf8 ( string text) . Converts the given text to UTF8 (as defined in RFC2044 ). Prev . Home . Next . imap_utf7_encode . Up . imap_thread
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.imap-utf8.html -- 3.4 Кб -- 03.02.2002
Похожие документы

2259. imap_unsubscribe
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) imap_unsubscribe -- Unsubscribe from a mailbox . int imap_unsubscribe ( int imap_stream, string mbox) . Unsubscribe from a specified mailbox. Returns TRUE on success and FALSE on error. Prev . Home . Next . imap_undelete . Up . imap_utf7_decode
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.imap-unsubscribe.html -- 3.4 Кб -- 03.02.2002
Похожие документы

2260. imap_utf7_decode
PHP Manual . Prev . Next . 3.0.15 - 3.0.18 only, PHP 4 >= 4.0.0) imap_utf7_decode -- Decodes a modified UTF-7 encoded string. string imap_utf7_decode ( string text) . Decodes modified UTF-7 text into 8bit data. Returns the decoded 8bit data, or FALSE if the input string was not valid modified UTF-7. ... The modified UTF-7 encoding is defined in RFC 2060 , section 5.1.3 (original UTF-7 was defned in RFC1642 ). ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.imap-utf7-decode.html -- 3.9 Кб -- 03.02.2002
Похожие документы

В начало ] Пред. | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | След.В конец ]

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