×
日本語のページを検索
  • すべての言語
  • 日本語のページを検索
すべての結果
ヒント: 日本語の検索結果のみ表示します。検索言語は [表示設定] で指定できます
Description. PEAR DB provides several methods for querying databases. The most direct method is query(). It takes a SQL query string as an argument.
... Database lock timeout exceeded. */ define('DB_ERROR_LOCK_TIMEOUT', -30); /** * Database deadlock encountered. */ define('DB_ERROR_DEADLOCK', -31); ...
2004/12/14 · $db->query("BEGIN"); //トランザクション開始 $db->query("LOCK TABLE target_table IN SHARE ROW EXCLUSIVE MODE"); //必要に応じてロックレベルを設定 ...
php"); $db = DB::connect($dsn); PDO $db = new PDO($dsn); □SQLの実行 $sql = "SELECT * FROM tablename"; PEAR DB $res = $db->query($sql); PDO $res = $db->query($ ...
PEAR::DB is an advanced, object-oriented database library that provides full database abstraction—that is, you use the same code for all your databases.
含まれない: begin | 必須にする:begin
So far we've only looked at basic querying with PEAR::DB, but you should now be getting an idea of the power it offers when working with multiple databases.
関連する質問
The methods PEAR DB uses to interact with PHP's mysql extension for interacting with MySQL databases ... Return: a new DB_result object for successful SELECT ...
2001/10/09 · //include new pgsql pear db file ... ... $Begin_Query = "BEGIN"; $Begin_Result = $db->query ... require_once("DB.php");. $db = DB::connect ...
2003/05/30 · PEAR DB supports a decent subset of the core PHP-supported databases and is being extended to support even more. PEAR DB is a great tool to code ...