mysql_select_db
(PHP 4, PHP 5)
mysql_select_db — MySQL データベースを選択する
警告
この拡張モジュールは PHP 5.5.0 で非推奨になり、PHP 7.0.0 で削除されました。 MySQLi あるいは PDO_MySQL を使うべきです。詳細な情報は MySQL: API の選択 を参照ください。 この関数の代替として、これらが使えます。
- mysqli_select_db()
- PDO::__construct() (dsn で指定)
説明
指定したリンク ID が指すサーバー上のデータベースを、アクティブな データベースに設定します。それ以降にコールされる mysql_query() は、すべてアクティブなデータベース上で 実行されます。
パラメータ
database_name
-
選択するデータベース名。
link_identifier
MySQL 接続。指定されない場合、mysql_connect() により直近にオープンされたリンクが指定されたと仮定されます。そのようなリンクがない場合、引数を指定せずに mysql_connect() がコールした時と同様にリンクを確立します。リンクが見付からない、または、確立できない場合、
E_WARNING
レベルのエラーが生成されます。
例
例1 mysql_select_db() の例
<?php
$link = mysql_connect('localhost', 'mysql_user', 'mysql_password');
if (!$link) {
die('Not connected : ' . mysql_error());
}
// foo をカレントの db に指定する
$db_selected = mysql_select_db('foo', $link);
if (!$db_selected) {
die ('Can\'t use foo : ' . mysql_error());
}
?>
注意
注意:
下位互換のために、次の非推奨別名を使用してもいいでしょう。 mysql_selectdb()
参考
- mysql_connect() - MySQL サーバーへの接続をオープンする
- mysql_pconnect() - MySQL サーバーへの持続的な接続をオープンする
- mysql_query() - MySQL クエリを送信する
+add a note
User Contributed Notes 2 notes
james at gogo dot co dot nz ¶
20 years ago
Be carefull if you are using two databases on the same server at the same time. By default mysql_connect returns the same connection ID for multiple calls with the same server parameters, which means if you do
<?php
$db1 = mysql_connect(...stuff...);
$db2 = mysql_connect(...stuff...);
mysql_select_db('db1', $db1);
mysql_select_db('db2', $db2);
?>
then $db1 will actually have selected the database 'db2', because the second call to mysql_connect just returned the already opened connection ID !
You have two options here, eiher you have to call mysql_select_db before each query you do, or if you're using php4.2+ there is a parameter to mysql_connect to force the creation of a new link.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google