如何在PHP中选择与PDO一起使用的MySQL数据库? [英] How do I select a MySQL database to use with PDO in PHP?

查看:168
本文介绍了如何在PHP中选择与PDO一起使用的MySQL数据库?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在已经创建PHP PDO对象之后选择要使用的MySQL数据库.我该怎么做?

I want to select a MySQL database to use after a PHP PDO object has already been created. How do I do this?

// create PDO object and connect to MySQL
$dbh = new PDO( 'mysql:host=localhost;', 'name', 'pass' );

// create a database named 'database_name'

// select the database we just created ( this does not work )
$dbh->select_db( 'database_name' );

是否有一个与mysqli :: select_db等效的PDO?

Is there a PDO equivalent to mysqli::select_db?

也许我正在尝试不正确地使用PDO?请帮助或解释.

Perhaps I'm trying to use PDO improperly? Please help or explain.

编辑

我不应该使用PDO创建新数据库吗?我知道使用PDO的大部分好处会因为很少使用的操作而丢失,该操作不会插入数据,例如CREATE DATABASE,但是不得不使用其他连接创建数据库,然后创建PDO连接似乎很奇怪.其他电话.

Should I not be using PDO to create new databases? I understand that the majority of benefits from using PDO are lost on a rarely used operation that does not insert data like CREATE DATABASE, but it seems strange to have to use a different connection to create the database, then create a PDO connection to make other calls.

推荐答案

通常,您在连接时会在DSN中指定数据库.但是,如果您要创建一个新数据库,显然您不能在创建该数据库之前将其指定为DSN.

Typically you would specify the database in the DSN when you connect. But if you're creating a new database, obviously you can't specify that database the DSN before you create it.

您可以使用USE语句更改默认数据库:

You can change your default database with the USE statement:

$dbh = new PDO("mysql:host=...;dbname=mysql", ...);

$dbh->query("create database newdatabase");

$dbh->query("use newdatabase");

随后的CREATE TABLE语句将在您的新数据库中创建.

Subsequent CREATE TABLE statements will be created in your newdatabase.

来自@Mike的评论:

Re comment from @Mike:

当您像这样切换数据库时,似乎会迫使PDO模拟准备好的语句.将PDO :: ATTR_EMULATE_PREPARES设置为false,然后尝试使用另一个数据库将失败.

When you switch databases like that it appears to force PDO to emulate prepared statements. Setting PDO::ATTR_EMULATE_PREPARES to false and then trying to use another database will fail.

我只是做了一些测试,但我没有看到这种情况.更改数据库仅在服务器上进行,并且不会更改客户端中PDO的配置.这是一个示例:

I just did some tests and I don't see that happening. Changing the database only happens on the server, and it does not change anything about PDO's configuration in the client. Here's an example:

<?php

// connect to database
try {
    $pdo = new PDO('mysql:host=huey;dbname=test', 'root', 'root');
    $pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
    $pdo->setAttribute(PDO::ATTR_EMULATE_PREPARES, false);
} catch(PDOException $err) {
    die($err->getMessage());
}

$stmt = $pdo->prepare("select * from foo WHERE i = :i");
$result = $stmt->execute(array("i"=>123));
print_r($stmt->fetchAll(PDO::FETCH_ASSOC));

$pdo->exec("use test2");

$stmt = $pdo->prepare("select * from foo2 WHERE i = :i AND i = :i");
$result = $stmt->execute(array("i"=>456));
print_r($stmt->fetchAll(PDO::FETCH_ASSOC));

如果您说的是真的,那么这应该可以正常工作.仅当PDO :: ATTR_EMULATE_PREPARES为true时,PDO才能多次使用给定的命名参数.因此,如果您说此属性设置为true作为更改数据库的副作用,那么它应该可以工作.

If what you're saying is true, then this should work without error. PDO can use a given named parameter more than once only if PDO::ATTR_EMULATE_PREPARES is true. So if you're saying that this attribute is set to true as a side effect of changing databases, then it should work.

但是它不起作用-它收到错误消息无效的参数编号",表明未模拟的准备好的语句仍然有效.

But it doesn't work -- it gets an error "Invalid parameter number" which indicates that non-emulated prepared statements remains in effect.

这篇关于如何在PHP中选择与PDO一起使用的MySQL数据库?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆