Поиск по:old.master.cmc.msu.ru -
Поискать по всем серверам
На этой странице приведены все страницы сервера old.master.cmc.msu.ru ,которые мы индексируем. Показаны документы 2721 - 2740 из 3519.
Упорядочить по:
URL
|
дате изменения
2721. fbsql_drop_db
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.6) fbsql_drop_db -- Drop (delete) a FrontBase database . bool fbsql_drop_db ( string database_name [, resource link_identifier]) . Returns: TRUE on success, FALSE on failure. fbsql_drop_db() attempts to drop (remove) an entire database from the server associated with the specified link identifier. Prev . Home . Next . fbsql_db_status . Up . fbsql_errno
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-drop-db.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
2722. fbsql_data_seek
... Next . PHP 4 >= 4.0.6) fbsql_data_seek -- Move internal result pointer . bool fbsql_data_seek ( resource result_identifier, int row_number) . ... php $link = fbsql_pconnect ( localhost , _SYSTEM , secret ) or die ( Could not connect ); fbsql_select_db ( samp_db ) or die ( Could not select database ); $ query = SELECT last_name, first_name FROM friends; ; $ result = fbsql_ query ($ query ) or die ( Query failed ); # fetch rows in reverse order for ($i = fbsql_num_rows ($ ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-data-seek.html -- 4.9 Кб -- 03.02.2002
Похожие документы
Похожие документы
2723. fbsql_db_query
PHP Manual . Prev . Next . PHP 4 >= 4.0.6) fbsql_db_query -- Send a FrontBase query . resource fbsql_db_query ( string database, string query [, resource link_identifier]) . ... If the optional link identifier isn't specified, the function will try to find an open link to the FrontBase server and if no such link is found it'll try to create one as if fbsql_connect() was called with no arguments . See also fbsql_connect() . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-db-query.html -- 3.9 Кб -- 03.02.2002
Похожие документы
Похожие документы
2724. fbsql_database_password
PHP Manual . ... PHP 4 >= 4.0.6) fbsql_database_password -- Sets or retrieves the password for a FrontBase database . string fbsql_database_password ( resource link_identifier [, string database_password]) . Returns: The database password associated with the link identifier. fbsql_database_password() sets and retrieves the database password used by the connection. if a database is protected by a database password, the user must call this function before calling fbsql_select_db() . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-database-password.html -- 5.2 Кб -- 03.02.2002
Похожие документы
Похожие документы
2725. fbsql_create_blob
... PHP 4 CVS only) fbsql_create_blob -- Create a BLOB . string fbsql_create_blob ( string blob_data [, resource link_identifier]) . ... php $link = fbsql_pconnect ("localhost", "_SYSTEM", "secret") or die ("Could not connect"); $filename = "blobfile.bin"; $fp = fopen($filename, "rb"); $blobdata = fread($fp, filesize($filename)); fclose($fp); $blobHandle = fbsql_create_blob($blobdata, $link); $sql = "INSERT INTO BLOB_TABLE (BLOB_COLUMN) VALUES ($blobHandle);"; $rs = fbsql_query($sql, $link); ?> ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-create-blob.html -- 4.7 Кб -- 03.02.2002
Похожие документы
Похожие документы
2726. fbsql_create_clob
... PHP 4 CVS only) fbsql_create_clob -- Create a CLOB . string fbsql_create_clob ( string clob_data [, resource link_identifier]) . ... php $link = fbsql_pconnect ("localhost", "_SYSTEM", "secret") or die ("Could not connect"); $filename = "clob_file.txt"; $fp = fopen($filename, "rb"); $clobdata = fread($fp, filesize($filename)); fclose($fp); $clobHandle = fbsql_create_clob($clobdata, $link); $sql = "INSERT INTO CLOB_TABLE (CLOB_COLUMN) VALUES ($clobHandle);"; $rs = fbsql_query($sql, $link); ?> ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-create-clob.html -- 4.7 Кб -- 03.02.2002
Похожие документы
Похожие документы
2727. fbsql_connect
PHP Manual . ... PHP 4 >= 4.0.6) fbsql_connect -- Open a connection to a FrontBase Server . resource fbsql_connect ( [string hostname [, string username [, string password]]]) . Returns a positive FrontBase link identifier on success, or an error message on failure. fbsql_connect() establishes a connection to a FrontBase 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 fbsql_close() . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-connect.html -- 4.9 Кб -- 03.02.2002
Похожие документы
Похожие документы
2728. fbsql_create_db
... PHP 4 >= 4.0.6) fbsql_create_db -- Create a FrontBase database . bool fbsql_create_db ( string database name [, resource link_identifier]) . fbsql_create_db() attempts to create a new database on the server associated with the specified link identifier. ... php $link = fbsql_pconnect ("localhost", "_SYSTEM", "secret") or die ("Could not connect"); if (fbsql_create_db ("my_db")) { print("Database created successfully\n"); } else { printf("Error creating database: %s\n", fbsql_error ()); } ?> ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-create-db.html -- 4.1 Кб -- 03.02.2002
Похожие документы
Похожие документы
2729. fbsql_commit
PHP Manual . Prev . Next . PHP 4 >= 4.0.6) fbsql_commit -- Commits a transaction to the database . bool fbsql_commit ( [resource link_identifier]) . Returns: TRUE on success, FALSE on failure. fbsql_commit() ends the current transaction by writing all inserts, updates and deletes to the disk and unlocking all row and table locks held by the transaction. This command is only needed if autocommit is set to false. See also: fbsql_autocommit() and fbsql_rollback() . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-commit.html -- 3.8 Кб -- 03.02.2002
Похожие документы
Похожие документы
2730. fbsql_change_user
... Next . unknown) fbsql_change_user -- Change logged in user of the active connection . resource fbsql_change_user ( string user, string password [, string database [, int link_identifier]]) . fbsql_change_user() changes the logged in user of the current active connection, or the connection given by the optional parameter link_identifier. ... If the new user and password authorization fails, the current connected user stays active. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-change-user.html -- 3.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
2731. fbsql_close
... PHP 4 >= 4.0.6) fbsql_close -- Close FrontBase connection . boolean fbsql_close ( [resource link_identifier]) . Returns: TRUE on success, FALSE on error. fbsql_close() closes the connection to the FrontBase server that's associated with the specified link identifier. If link_identifier isn't specified, the last opened link is used. ... php $link = fbsql_connect ("localhost", "_SYSTEM", "secret") or die ("Could not connect"); print ("Connected successfully"); fbsql_close ($link); ?> ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-close.html -- 4.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
2732. fbsql_affected_rows
... PHP 4 >= 4.0.6) fbsql_affected_rows -- Get number of affected rows in previous FrontBase operation . int fbsql_affected_rows ( [int link_identifier]) . fbsql_affected_rows() returns the number of rows affected by the last INSERT, UPDATE or DELETE query associated with link_identifier . ... Note: If you are using transactions, you need to call fbsql_affected_rows() after your INSERT, UPDATE, or DELETE query, not after the commit. ... If the last query failed, this function will return -1. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-affected-rows.html -- 4.7 Кб -- 03.02.2002
Похожие документы
Похожие документы
2733. fbsql_autocommit
PHP Manual . Prev . Next . PHP 4 >= 4.0.6) fbsql_autocommit -- Enable or disable autocommit. bool fbsql_autocommit ( resource link_identifier [, bool OnOff]) . fbsql_autocommit() returns the current autocommit status. if the optional OnOff parameter is given the auto commit status will be changed. ... With OnOff set to FALSE the user must commit or rollback the transaction using either fbsql_commit() or fbsql_rollback() . See also: fbsql_commit() and fbsql_rollback() . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-autocommit.html -- 4.1 Кб -- 03.02.2002
Похожие документы
Похожие документы
2734. trigger_error
PHP Manual . Prev . Next . PHP 4 ) trigger_error -- Generates a user-level error/warning/notice message . ... Used to trigger a user error condition, it can be used by in conjunction with the built-in error handler, or with a user defined function that has been set as the new error handler ( set_error_handler() ). ... For example: . ... Note: See set_error_handler() for a more extensive example. See also error_reporting() , set_error_handler() , restore_error_handler() , user_error() . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.trigger-error.html -- 4.7 Кб -- 03.02.2002
Похожие документы
Похожие документы
2735. user_error
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) user_error -- Generates a user-level error/warning/notice message . void user_error ( string error_msg [, int error_type]) . This is an alias for the function trigger_error() . See also error_reporting() , set_error_handler() , restore_error_handler() , and trigger_error() . Prev . Home . Next . trigger_error . Up . FrontBase Functions
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.user-error.html -- 3.7 Кб -- 03.02.2002
Похожие документы
Похожие документы
2736. Error Handling and Logging Functions
... These are functions dealing with error handling and logging. ... With the logging functions, you can send messages directly to other machines, to an email (or email to pager gateway!), to system logs, etc., so you can selectively log and monitor the most important parts of your applications and websites. ... error_log -- send an error message somewhere . ... set_error_handler -- Sets a user-defined error handler function. trigger_error -- Generates a user-level error/warning/notice message . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/ref.errorfunc.html -- 4.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
2737. set_error_handler
PHP Manual . ... PHP 4 ) set_error_handler -- Sets a user-defined error handler function. string set_error_handler ( string error_handler) . ... ERROR | ... PHP _OS. ) br \n ; echo Aborting... br \n ; exit -1; break; case ERROR : echo b ERROR /b [$errno] $errstr br \n ; break; case WARNING : echo b WARNING /b [$errno] $errstr br \n ; break; default: echo Unkown error type: [$errno] $errstr br \n ; break; } } // function to test the error handling function ... trigger_error ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.set-error-handler.html -- 9.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
2738. restore_error_handler
. PHP Manual . Prev . Next . (PHP 4 ) restore_error_handler -- Restores the previous error handler function . void restore_error_handler ( (void);) . Used after changing the error handler function using set_error_handler() , to revert to the previous error handler (which could be the built-in or a user defined function) . See also error_reporting() , set_error_handler() , trigger_error() , user_error() . Prev . Home . Next . error_reporting . Up . set_error_handler
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.restore-error-handler.html -- 3.9 Кб -- 03.02.2002
Похожие документы
Похожие документы
2739. error_log
... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) error_log -- send an error message somewhere . int error_log ( string message, int message_type [, string destination [, string extra_headers]]) . Sends an error message to the web server's error log, a TCP port or to a file. ... message is sent to PHP's system logger, using the Operating System's system logging mechanism or a file, depending on what the error_log configuration directive is set to. 1 . ... message is sent through the PHP debugging connection. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.error-log.html -- 6.8 Кб -- 03.02.2002
Похожие документы
Похожие документы
2740. error_reporting
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) error_reporting -- set which PHP errors are reported . ... error_reporting (55); // PHP 3 equivalent to E_ALL ^ E_NOTICE /* ...in PHP 4, '55' would mean (E_ERROR | ... error_reporting(0); /* Turn off all reporting */ error_reporting (7); // Old syntax, PHP 2/3 error_reporting (E_ERROR | ... E_PARSE); // New syntax for PHP 3/4 /* Good to use for simple running errors */ error_reporting (15); // Old syntax, PHP 2/3 error_reporting (E_ERROR | ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.error-reporting.html -- 7.5 Кб -- 03.02.2002
Похожие документы
Похожие документы