Поиск по:oit.cmc.msu.ru -
Поискать по всем серверам
На этой странице приведены все страницы сервера oit.cmc.msu.ru ,которые мы индексируем. Показаны документы 1741 - 1760 из 3520.
Упорядочить по:
URL
|
дате изменения
1741. msql_fetch_object
PHP Manual . Prev . Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) msql_fetch_object -- Fetch row as object . int msql_fetch_object ( int query_identifier [, int result_type]) . Returns an object with properties that correspond to the fetched row, or FALSE if there are no more rows. msql_fetch_object() is similar to msql_fetch_array() , with one difference - an object is returned, instead of an array. ... See also: msql_fetch_array() and msql_fetch_row() . ... msql_fetch_row ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.msql-fetch-object.html -- 4.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
1742. msql_fetch_array
PHP Manual . Prev . Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) msql_fetch_array -- Fetch row as array . int msql_fetch_array ( int query_identifier [, int result_type]) . Returns an array that corresponds to the fetched row, or FALSE if there are no more rows. msql_fetch_array() is an extended version of msql_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. ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.msql-fetch-array.html -- 4.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
1743. msql_fetch_field
... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) msql_fetch_field -- Get field information . object msql_fetch_field ( int query_identifier, int field_offset) . Returns an object containing field information . msql_fetch_field() can be used in order to obtain information about fields in a certain query result. If the field offset isn't specified, the next field that wasn't yet retreived by msql_fetch_field() is retreived. ... name - column name . ... primary_key - 1 if the column is a primary key . ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.msql-fetch-field.html -- 4.2 Кб -- 03.02.2002
Похожие документы
Похожие документы
1744. msql_dropdb
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) msql_dropdb -- Drop (delete) mSQL database . See msql_drop_db() . Prev . Home . Next . msql_drop_db . Up . msql_error
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.msql-dropdb.html -- 3.2 Кб -- 03.02.2002
Похожие документы
Похожие документы
1745. msql_error
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) msql_error -- Returns error message of last msql call . string msql_error ( int [link_identifier] ) . Errors coming back from the mSQL database backend no longer issue warnings. Instead, use these functions to retrieve the error string. Prev . Home . Next . msql_dropdb . Up . msql_fetch_array
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.msql-error.html -- 3.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
1746. msql_dbname
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) msql_dbname -- Get current mSQL database name . string msql_dbname ( int query_identifier, int i) . msql_dbname() returns the database name stored in position i of the result pointer returned from the msql_listdbs() function. The msql_numrows() function can be used to determine how many database names are available. Prev . Home . Next . msql_data_seek . Up . msql_drop_db
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.msql-dbname.html -- 3.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
1747. msql_drop_db
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) msql_drop_db -- Drop (delete) mSQL database . int msql_drop_db ( string database_name, int link_identifier) . Returns TRUE on success, FALSE on failure. msql_drop_db() attempts to drop (remove) an entire database from the server associated with the specified link identifier. See also: msql_create_db() . Prev . Home . Next . msql_dbname . Up . msql_dropdb
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.msql-drop-db.html -- 3.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
1748. msql_createdb
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) msql_createdb -- Create mSQL database . int msql_createdb ( string database name [, int link_identifier]) . Identical to msql_create_db() . Prev . Home . Next . msql_create_db . Up . msql_data_seek
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.msql-createdb.html -- 3.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
1749. msql_data_seek
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) msql_data_seek -- Move internal row pointer . int msql_data_seek ( int query_identifier, int row_number) . Returns TRUE on success, FALSE on failure. msql_data_seek() moves the internal row pointer of the mSQL result associated with the specified query identifier to pointer to the specifyed row number. The next call to msql_fetch_row() would return that row. See also: msql_fetch_row() . Prev . Home . Next . msql_createdb . Up . msql_dbname
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.msql-data-seek.html -- 3.8 Кб -- 03.02.2002
Похожие документы
Похожие документы
1750. msql_connect
... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) msql_connect -- Open mSQL connection . int msql_connect ( [string hostname [, string server [, string username [, string password]]]]) . Returns a positive mSQL link identifier on success, or FALSE on error. msql_connect() establishes a connection to a mSQL server. ... The link to the server will be closed as soon as the execution of the script ends, unless it's closed earlier by explicitly calling msql_close() . See also msql_pconnect() , msql_close() . ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.msql-connect.html -- 4.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
1751. msql_create_db
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) msql_create_db -- Create mSQL database . int msql_create_db ( string database name [, int link_identifier]) . msql_create_db() attempts to create a new database on the server associated with the specified link identifier. See also: msql_drop_db() . Prev . Home . Next . msql_connect . Up . msql_createdb
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.msql-create-db.html -- 3.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
1752. msql_affected_rows
. PHP Manual . Prev . Next . (3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) msql_affected_rows -- Returns number of affected rows . int msql_affected_rows ( int query_identifier) . Returns number of affected ("touched") rows by a specific query (i.e. the number of rows returned by a SELECT, the number of rows modified by an update, or the number of rows removed by a delete). See also: msql_query() . Prev . Home . Next . msql . Up . msql_close
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.msql-affected-rows.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
1753. msql_close
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) msql_close -- Close mSQL connection . int msql_close ( int link_identifier) . Returns TRUE on success, FALSE on error. msql_close() closes the link to a mSQL database that's associated with the specified 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. msql_close() will not close persistent links generated by msql_pconnect() . ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.msql-close.html -- 4.1 Кб -- 03.02.2002
Похожие документы
Похожие документы
1754. msql
PHP Manual . Prev . Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) msql -- Send mSQL query . int msql ( string database, string query, int link_identifier) . ... If the optional link identifier isn't specified, the function will try to find an open link to the mSQL server and if no such link is found it'll try to create one as if msql_connect() was called with no arguments (see msql_connect() ). ... mSQL functions . ... msql_affected_rows ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.msql.html -- 3.8 Кб -- 03.02.2002
Похожие документы
Похожие документы
1755. udm_open_stored
. PHP Manual . Prev . Next . (PHP 4 CVS only) udm_open_stored -- Open connection to stored . int udm_open_stored ( int agent, string storedaddr) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . udm_crc32 . Up . mSQL functions
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.udm-open-stored.html -- 3.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
1756. mnoGoSearch Functions
PHP Manual . ... These functions allow you to access mnoGoSearch (former UdmSearch) free search engine. ... If you use this option without specifying the path to mnogosearch, php will look for mnogosearch under /usr/local/mnogosearch path by default. ... udm_api_version -- Get mnoGoSearch API version. udm_cat_path -- Get the path to the current category. udm_cat_list -- Get all the categories on the same level with the current one. udm_clear_search_limits -- Clear all mnoGoSearch search restrictions . ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/ref.mnogo.html -- 8.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
1757. udm_close_stored
. PHP Manual . Prev . Next . (PHP 4 CVS only) udm_close_stored -- Close connection to stored . int udm_close_stored ( int agent, int link) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . udm_check_stored . Up . udm_crc32
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.udm-close-stored.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
1758. udm_crc32
. PHP Manual . Prev . Next . (PHP 4 CVS only) udm_crc32 -- Return CRC32 checksum of gived string . int udm_crc32 ( int agent, string str) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . udm_close_stored . Up . udm_open_stored
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.udm-crc32.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
1759. udm_check_charset
. PHP Manual . Prev . Next . (PHP 4 CVS only) udm_check_charset -- Check if the given charset is known to mnogosearch . int udm_check_charset ( int agent, string charset) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . udm_set_agent_param . Up . udm_check_stored
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.udm-check-charset.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
1760. udm_check_stored
. PHP Manual . Prev . Next . (PHP 4 CVS only) udm_check_stored -- Check connection to stored . int udm_check_stored ( int agent, int link, string doc_id) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . udm_check_charset . Up . udm_close_stored
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.udm-check-stored.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы