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

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

Упорядочить по: URL  |  дате изменения
2201. ibase_commit
. PHP Manual . Prev . Next . (3.0.7 - 3.0.18 only, PHP 4 >= 4.0.0) ibase_commit -- Commit a transaction . int ibase_commit ( [int link_identifier, int trans_number]) . Commits transaction trans_number which was created with ibase_trans() . Prev . Home . Next . ibase_trans . Up . ibase_rollback
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ibase-commit.html -- 3.4 Кб -- 03.02.2002
Похожие документы

2202. ibase_rollback
. PHP Manual . Prev . Next . (3.0.7 - 3.0.18 only, PHP 4 >= 4.0.0) ibase_rollback -- Rolls back a transaction . int ibase_rollback ( [int link_identifier, int trans_number]) . Rolls back transaction trans_number which was created with ibase_trans() . Prev . Home . Next . ibase_commit . Up . ibase_timefmt
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ibase-rollback.html -- 3.4 Кб -- 03.02.2002
Похожие документы

2203. ibase_trans
. PHP Manual . Prev . Next . (3.0.7 - 3.0.18 only, PHP 4 >= 4.0.0) ibase_trans -- Begin a transaction . int ibase_trans ( [int trans_args [, int link_identifier]]) . Begins a transaction. Prev . Home . Next . ibase_execute . Up . ibase_commit
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ibase-trans.html -- 3.2 Кб -- 03.02.2002
Похожие документы

2204. ibase_execute
PHP Manual . ... Next . 3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) ibase_execute -- Execute a previously prepared query . int ibase_execute ( int query [, int bind_args]) . Execute a query prepared by ibase_prepare() . ... WHERE BAZ = ?"); while (list($baz, $bar) = each($updates)) { ibase_execute($query, $bar, $baz); } ?> ... ibase_prepare . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ibase-execute.html -- 4.0 Кб -- 03.02.2002
Похожие документы

2205. ibase_prepare
. PHP Manual . Prev . Next . (3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) ibase_prepare -- Prepare a query for later binding of parameter placeholders and execution . int ibase_prepare ( [int link_identifier, string query]) . Prepare a query for later binding of parameter placeholders and execution (via ibase_execute() ). Prev . Home . Next . ibase_free_result . Up . ibase_execute
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ibase-prepare.html -- 3.5 Кб -- 03.02.2002
Похожие документы

2206. ibase_free_query
. PHP Manual . Prev . Next . (3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) ibase_free_query -- Free memory allocated by a prepared query . int ibase_free_query ( int query) . Free a query prepared by ibase_prepare() . Prev . Home . Next . ibase_field_info . Up . ibase_free_result
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ibase-free-query.html -- 3.4 Кб -- 03.02.2002
Похожие документы

2207. ibase_free_result
. PHP Manual . Prev . Next . (3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) ibase_free_result -- Free a result set . int ibase_free_result ( int result_identifier) . Free's a result set the has been created by ibase_query() . Prev . Home . Next . ibase_free_query . Up . ibase_prepare
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ibase-free-result.html -- 3.3 Кб -- 03.02.2002
Похожие документы

2208. ibase_fetch_object
PHP Manual . ... 3.0.7 - 3.0.18 only, PHP 4 >= 4.0.0) ibase_fetch_object -- Get an object from a InterBase database . object ibase_fetch_object ( int result_id) . Fetches a row as a pseudo-object from a result_id obtained either by ibase_query() or ibase_execute() . php $dbh = ibase_connect ($host, $username, $password); $stmt = 'SELECT * FROM tblname'; $sth = ibase_query ($dbh, $stmt); while ($row = ibase_fetch_object ($sth)) { print $row->email . ... See also ibase_fetch_row() . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ibase-fetch-object.html -- 4.3 Кб -- 03.02.2002
Похожие документы

2209. ibase_field_info
... array ibase_field_info ( int result, int field number) . ... The array is in the form of name, alias, relation, length, type. $rs=ibase_query("SELECT * FROM tablename"); $coln = ibase_num_fields($rs); for ($i=0; $i < $coln; $i++) { $col_info = ibase_field_info($rs, $i); echo "name: ".$col_info['name']."\n"; echo "alias: ".$col_info['alias']."\n"; echo "relation: ".$col_info['relation']."\n"; echo "length: ".$col_info['length']."\n"; echo "type: ".$col_info['type']."\n"; } . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ibase-field-info.html -- 4.0 Кб -- 03.02.2002
Похожие документы

2210. ibase_errmsg
. PHP Manual . Prev . Next . (3.0.7 - 3.0.18 only, PHP 4 >= 4.0.0) ibase_errmsg -- Returns error messages . string ibase_errmsg ( (void);) . Returns a string containing an error message. Prev . Home . Next . ibase_query . Up . ibase_fetch_row
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ibase-errmsg.html -- 3.2 Кб -- 03.02.2002
Похожие документы

2211. ibase_fetch_row
PHP Manual . Prev . ... 3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) ibase_fetch_row -- Fetch a row from an InterBase database . array ibase_fetch_row ( int result_identifier) . Returns an array that corresponds to the fetched row, or FALSE if there are no more rows. ibase_fetch_row() fetches one row of data from the result associated with the specified result_identifier . ... Subsequent call to ibase_fetch_row() would return the next row in the result set, or FALSE if there are no more rows. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ibase-fetch-row.html -- 3.9 Кб -- 03.02.2002
Похожие документы

2212. ibase_close
. PHP Manual . Prev . Next . (3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) ibase_close -- Close a connection to an InterBase database . int ibase_close ( [int connection_id]) . Closes the link to an InterBase database that's associated with a connection id returned from ibase_connect() . If the connection id is omitted, the last opened link is assumed. Default transaction on link is committed, other transactions are rolled back. Prev . Home . Next . ibase_pconnect . Up . ibase_query
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ibase-close.html -- 3.5 Кб -- 03.02.2002
Похожие документы

2213. ibase_query
... Next . 3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) ibase_query -- Execute a query on an InterBase database . int ibase_query ( [int link_identifier, string query [, int bind_args]]) . ... If the query is not successful, returns FALSE . If it is successful and there are resulting rows (such as with a SELECT query), returns a result identifier. If the query was successful and there were no results, returns TRUE . Returns FALSE if the query fails. ... ibase_errmsg ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ibase-query.html -- 4.0 Кб -- 03.02.2002
Похожие документы

2214. ibase_connect
... 3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) ibase_connect -- Open a connection to an InterBase database . int ibase_connect ( string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role]]]]]]) . Establishes a connection to an InterBase server. ... In case a second call is made to ibase_connect() with the same arguments, no new link will be established, but instead, the link identifier of the already opened link will be returned. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ibase-connect.html -- 6.2 Кб -- 03.02.2002
Похожие документы

2215. ibase_pconnect
... 3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) ibase_pconnect -- Creates an persistent connection to an InterBase database . int ibase_pconnect ( string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role]]]]]]) . ibase_pconnect() acts very much like ibase_connect() with two major differences. ... Second, the connection to the InterBase server will not be closed when the execution of the script ends. ... Note: buffers was added in PHP4-RC2. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ibase-pconnect.html -- 5.0 Кб -- 03.02.2002
Похожие документы

2216. ifxus_write_slob
. PHP Manual . Prev . Next . (3.0.4 - 3.0.18 only, PHP 4 >= 4.0.0) ifxus_write_slob -- Writes a string into the slob object . int ifxus_write_slob ( long bid, string content) . Writes a string into the slob object. bid is a existing slob id and content the content to write. Return FALSE on error otherwise bytes written. Prev . Home . Next . ifxus_read_slob . Up . InterBase functions
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ifxus-write-slob.html -- 3.5 Кб -- 03.02.2002
Похожие документы

2217. Informix functions
... IDS 7.x support is fairly complete, with full support for BYTE and TEXT columns. ... Some notes on the use of BLOBs (TEXT and BYTE columns): BLOBs are normally addressed by BLOB identifiers. Select queries return a "blob id" for every BYTE and TEXT column. ... runtime functions : . ... ifx_blobinfile_mode(0) : return BYTE columns in memory, the blob id lets you get at the contents. ifx_blobinfile_mode(1) : return BYTE columns in a file, the blob id lets you get at the file name. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/ref.ifx.html -- 13.9 Кб -- 03.02.2002
Похожие документы

2218. ifxus_read_slob
. PHP Manual . Prev . Next . (3.0.4 - 3.0.18 only, PHP 4 >= 4.0.0) ifxus_read_slob -- Reads nbytes of the slob object . int ifxus_read_slob ( long bid, long nbytes) . Reads nbytes of the slob object. bid is a existing slob id and nbytes is the number of bytes read. Return FALSE on error otherwise the string. Prev . Home . Next . ifxus_seek_slob . Up . ifxus_write_slob
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ifxus-read-slob.html -- 3.5 Кб -- 03.02.2002
Похожие документы

2219. ifxus_seek_slob
. PHP Manual . Prev . Next . (3.0.4 - 3.0.18 only, PHP 4 >= 4.0.0) ifxus_seek_slob -- Sets the current file or seek position . int ifxus_seek_slob ( long bid, int mode, long offset) . Sets the current file or seek position of an open slob object. bid should be an existing slob id. Modes: 0 = LO_SEEK_SET, 1 = LO_SEEK_CUR, 2 = LO_SEEK_END and offset is an byte offset. Return FALSE on error otherwise the seek position. Prev . Home . Next . ifxus_tell_slob . Up . ifxus_read_slob
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ifxus-seek-slob.html -- 3.6 Кб -- 03.02.2002
Похожие документы

2220. ifxus_close_slob
. PHP Manual . Prev . Next . (3.0.4 - 3.0.18 only, PHP 4 >= 4.0.0) ifxus_close_slob -- Deletes the slob object . int ifxus_close_slob ( int bid) . Deletes the slob object on the given slob object-id bid . Return FALSE on error otherwise TRUE . Prev . Home . Next . ifxus_free_slob . Up . ifxus_open_slob
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ifxus-close-slob.html -- 3.4 Кб -- 03.02.2002
Похожие документы

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

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