$connn=mysql_connect("localhost","root","root");mysql_select_db("changtong",$connn);mysql_query("set names gb2312");现在选择了"changtong"数据库,我如果想再选择别的数据库应该怎么做??
1 回答
慕沐林林
TA贡献2016条经验 获得超9个赞
mysql操作多个数据库,需要在程序中切换,更改主机ip和端口以及连接的db名就可以了。
比如:
连接db1:
$connn=mysql_connect("localhost","root","root");
mysql_select_db("changtong",$connn);
mysql_query("set names gb2312");
连接db2:
$connn=mysql_connect("localhost1","root1","root1");
mysql_select_db("jiangshe",$connn);
这样就可以同时操作连个数据库了
添加回答
举报
0/150
提交
取消