Mysql
 sql >> Cơ Sở Dữ Liệu >  >> RDS >> Mysql

Làm cách nào để kết nối với nhiều cơ sở dữ liệu trong một trang PHP?

Bạn cần lưu trữ liên kết kết nối cơ sở dữ liệu trong biến riêng biệt. Ví dụ

 $connection_1 = mysql_connect("host:3306", "user", "password") or die(mysql_error());
 mysql_select_db("Test", $connection_1) or die(mysql_error());

 $connection_2 = mysql_pconnect("host2:3306", "user", "password") or die(mysql_error());
 mysql_select_db("Test", $connection_2) or die(mysql_error());

 mysql_query("your query", $connection_1); // run query for first connection
 mysql_query("your query", $connection_2); // run query for second connection


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Cách xử lý cơ sở dữ liệu kế thừa trong khuôn khổ Django

  2. PHP strtotime ():ngày hiển thị '1970-01-01' sau khi chuyển đổi

  3. Quay lại sao chép truyền thống từ GTID

  4. Làm cách nào để cập nhật bộ id từ 1?

  5. Cách tính số ngày giữa hai ngày trong PHP?