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

В начало ] Пред. | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | След.В конец ]

Упорядочить по: URL  |  дате изменения
2701. fbsql_next_result
PHP Manual . ... Next . PHP 4 >= 4.0.6) fbsql_next_result -- Move the internal result pointer to the next result . bool fbsql_next_result ( int result_id) . When sending more than one SQL statement to the server or executing a stored procedure with multiple results will cause the server to return multiple result sets. This function will test for additional results available form the server. ... The function will return TRUE if an additional result set was available or FALSE otherwise. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-next-result.html -- 4.5 Кб -- 03.02.2002
Похожие документы

2702. fbsql_list_dbs
PHP Manual . Prev . Next . PHP 4 >= 4.0.6) fbsql_list_dbs -- List databases available on a FrontBase server . resource fbsql_list_dbs ( [resource link_identifier]) . fbsql_list_dbs() will return a result pointer containing the databases available from the current fbsql daemon. ... Example 1. fbsql_list_dbs() example . link = fbsql_connect('localhost', 'myname', 'secret'); $db_list = fbsql_list_dbs($link); while ($row = fbsql_fetch_object($db_list)) { echo $row->Database . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-list-dbs.html -- 4.6 Кб -- 03.02.2002
Похожие документы

2703. fbsql_list_fields
... PHP 4 >= 4.0.6) fbsql_list_fields -- List FrontBase result fields . resource fbsql_list_fields ( string database_name, string table_name [, resource link_identifier]) . ... The function returns -1 if a error occurs. ... Example 1. fbsql_list_fields() example . link = fbsql_connect('localhost', 'myname', 'secret'); $fields = fbsql_list_fields("database1", "table1", $link); $columns = fbsql_num_fields($fields); for ($i = 0; $i < $columns; $i++) { echo fbsql_field_name($fields, $i) . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-list-fields.html -- 5.1 Кб -- 03.02.2002
Похожие документы

2704. fbsql_free_result
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.6) fbsql_free_result -- Free result memory . bool fbsql_free_result ( int result) . fbsql_free_result() will free all memory associated with the result identifier result . fbsql_free_result() only needs to be called if you are concerned about how much memory is being used for queries that return large result sets. All associated result memory is automatically freed at the end of the script's execution. Prev . Home . Next . fbsql_field_type . Up . fbsql_insert_id
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-free-result.html -- 3.6 Кб -- 03.02.2002
Похожие документы

2705. fbsql_insert_id
... Next . PHP 4 >= 4.0.6) fbsql_insert_id -- Get the id generated from the previous INSERT operation . int fbsql_insert_id ( [resource link_identifier]) . fbsql_insert_id() returns the ID generated for an column defined as DEFAULT UNIQUE by the previous INSERT query using the given link_identifier . If link_identifier isn't specified, the last opened link is assumed. fbsql_insert_id() returns 0 if the previous query does not generate an DEFAULT UNIQUE value. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-insert-id.html -- 4.2 Кб -- 03.02.2002
Похожие документы

2706. fbsql_field_table
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.6) fbsql_field_table -- Get name of the table the specified field is in . string fbsql_field_table ( resource result, int field_offset) . Returns the name of the table that the specified field is in. Prev . Home . Next . fbsql_field_seek . Up . fbsql_field_type
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-field-table.html -- 3.3 Кб -- 03.02.2002
Похожие документы

2707. fbsql_field_type
PHP Manual . ... PHP 4 >= 4.0.6) fbsql_field_type -- Get the type of the specified field in a result . ... fbsql_field_type() is similar to the fbsql_field_name() function. ... php fbsql_connect ( localhost , _SYSTEM , ); fbsql_select_db ( wisconsin ); $ result = fbsql_query ( SELECT * FROM onek; ); $ fields = fbsql_num_ fields ($ result ); $rows = fbsql_num_rows ($ result ); $i = 0; $ table = fbsql_ field _ table ($ result , $i); echo Your ' .$ table . ' table has .$ fields ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-field-type.html -- 4.8 Кб -- 03.02.2002
Похожие документы

2708. fbsql_field_len
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.6) fbsql_field_len -- Returns the length of the specified field . int fbsql_field_len ( resource result, int field_offset) . fbsql_field_len() returns the length of the specified field. Prev . Home . Next . fbsql_field_name . Up . fbsql_field_seek
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-field-len.html -- 3.3 Кб -- 03.02.2002
Похожие документы

2709. fbsql_field_seek
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.6) fbsql_field_seek -- Set result pointer to a specified field offset . bool fbsql_field_seek ( resource result, int field_offset) . Seeks to the specified field offset. If the next call to fbsql_fetch_field() doesn't include a field offset, the field offset specified in fbsql_field_seek() will be returned. See also: fbsql_fetch_field() . Prev . Home . Next . fbsql_field_len . Up . fbsql_field_table
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-field-seek.html -- 3.7 Кб -- 03.02.2002
Похожие документы

2710. fbsql_field_flags
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.6) fbsql_field_flags -- Get the flags associated with the specified field in a result . string fbsql_field_flags ( resource result, int field_offset) . fbsql_field_flags() returns the field flags of the specified field. The flags are reported as a single word per flag separated by a single space, so that you can split the returned value using explode() . Prev . Home . Next . fbsql_fetch_row . Up . fbsql_field_name
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-field-flags.html -- 3.6 Кб -- 03.02.2002
Похожие документы

2711. fbsql_field_name
... PHP 4 >= 4.0.6) fbsql_field_name -- Get the name of the specified field in a result . string fbsql_field_name ( resource result, int field_index) . fbsql_field_name() returns the name of the specified field index. result must be a valid result identifier and field_index is the numerical offset of the field. ... The users table consists of three fields: // user_id // username // password. $res = fbsql_db_query("users", "select * from users", $link); echo fbsql_field_name($res, 0) . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-field-name.html -- 4.7 Кб -- 03.02.2002
Похожие документы

2712. fbsql_fetch_object
... PHP 4 >= 4.0.6) fbsql_fetch_object -- Fetch a result row as an object . ... Returns an object with properties that correspond to the fetched row, or FALSE if there are no more rows. fbsql_fetch_object() is similar to fbsql_fetch_array() , with one difference - an object is returned, instead of an array. ... Speed-wise, the function is identical to fbsql_fetch_array() , and almost as quick as fbsql_fetch_row() (the difference is insignificant). Example 1. fbsql_fetch_object() example . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-fetch-object.html -- 5.1 Кб -- 03.02.2002
Похожие документы

2713. fbsql_fetch_row
PHP Manual . Prev . ... PHP 4 >= 4.0.6) fbsql_fetch_row -- Get a result row as an enumerated array . ... Returns: An array that corresponds to the fetched row, or FALSE if there are no more rows. fbsql_fetch_row() fetches one row of data from the result associated with the specified result identifier. ... Each result column is stored in an array offset, starting at offset 0. Subsequent call to fbsql_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.fbsql-fetch-row.html -- 4.4 Кб -- 03.02.2002
Похожие документы

2714. fbsql_fetch_lengths
PHP Manual . Prev . Next . PHP 4 >= 4.0.6) fbsql_fetch_lengths -- Get the length of each output in a result . array fbsql_fetch_lengths ( [resource result]) . Returns: An array that corresponds to the lengths of each field in the last row fetched by fbsql_fetch_row() , or FALSE on error. fbsql_fetch_lengths() stores the lengths of each result column in the last row returned by fbsql_fetch_row() , fbsql_fetch_array() and fbsql_fetch_object() in an array, starting at offset 0. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-fetch-lengths.html -- 4.1 Кб -- 03.02.2002
Похожие документы

2715. fbsql_fetch_assoc
... PHP 4 >= 4.0.6) fbsql_fetch_assoc -- Fetch a result row as an associative array . array fbsql_fetch_assoc ( resource result) . Returns an associative array that corresponds to the fetched row, or FALSE if there are no more rows. fbsql_fetch_assoc() is equivalent to calling fbsql_fetch_array() with FBSQL_ASSOC for the optional second parameter. ... If two or more columns of the result have the same field names, the last column will take precedence. ... Example 1. fbsql_fetch_assoc() example . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-fetch-assoc.html -- 5.4 Кб -- 03.02.2002
Похожие документы

2716. fbsql_fetch_field
... PHP 4 >= 4.0.6) fbsql_fetch_field -- Get column information from a result and return as an object . ... name - column name . ... php fbsql_connect ($host, $user, $password) or die ( Could not connect ); $ result = fbsql_db_query ( database , select * from table ) or die ( Query failed ); # get column metadata $i = 0; while ($i fbsql_num_fields ($ result )) { echo Information for column $i: BR \n ; $ meta = fbsql_fetch_field ($ result ); if (!$ meta ) { echo No ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-fetch-field.html -- 5.3 Кб -- 03.02.2002
Похожие документы

2717. fbsql_fetch_array
... PHP 4 >= 4.0.6) fbsql_fetch_array -- Fetch a result row as an associative array, a numeric array, or both . ... php fbsql_connect ($host, $user, $password); $result = fbsql_db_query ("database","select user_id, fullname from table"); while ($row = fbsql_fetch_array ($result)) { echo "user_id: ".$row["user_id"]."<br>\n"; echo "user_id: ".$row[0]."<br>\n"; echo "fullname: ".$row["fullname"]."<br>\n"; echo "fullname: ".$row[1]."<br>\n"; } fbsql_free_result ($result); ?> ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-fetch-array.html -- 5.8 Кб -- 03.02.2002
Похожие документы

2718. fbsql_errno
... PHP 4 >= 4.0.6) fbsql_errno -- Returns the numerical value of the error message from previous FrontBase operation . ... Instead, use fbsql_errno() to retrieve the error code. Note that this function only returns the error code from the most recently executed fbsql function (not including fbsql_error() and fbsql_errno() ), so if you want to use it, make sure you check the value before calling another fbsql function. <?php fbsql_connect("marliesle"); echo fbsql_errno().": ".fbsql_error()." ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-errno.html -- 4.6 Кб -- 03.02.2002
Похожие документы

2719. fbsql_error
PHP Manual . ... PHP 4 >= 4.0.6) fbsql_error -- Returns the text of the error message from previous FrontBase operation . ... Instead, use fbsql_error() to retrieve the error text. Note that this function only returns the error text from the most recently executed fbsql function (not including fbsql_error() and fbsql_errno() ), so if you want to use it, make sure you check the value before calling another fbsql function. <?php fbsql_connect("marliesle"); echo fbsql_errno().": ".fbsql_error()." ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-error.html -- 4.6 Кб -- 03.02.2002
Похожие документы

2720. fbsql_db_status
... PHP 4 >= 4.1.0) fbsql_db_status -- Get the status for a given database . int fbsql_db_status ( string database_name [, resource link_identifier]) . Returns: An integer value with the current status. fbsql_db_status() requests the current status of the database specified by database_name . ... FBSQL_UNKNOWN - The Status is unknown. FBSQL_STOPPED - The database is not running. ... FBSQL_NOEXEC - FBExec is not running on the server and it is not possible to get the status of the database. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-db-status.html -- 4.9 Кб -- 03.02.2002
Похожие документы

В начало ] Пред. | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | След.В конец ]

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