使用 PDO for mySQL 时遇到问题

发布于 2024-08-23 09:22:27 字数 154 浏览 4 评论 0 原文

使用以下构造函数

$this->pdo = new PDO ($this->source, $this->username, $this->password);

如果我没有任何密码,那么我应该传递 NuLL 值来创建 PDO 的新实例吗?

while using the following constructor

$this->pdo = new PDO ($this->source, $this->username, $this->password);

if I do not have any password then should I pass a NuLL value for creating a new instance of PDO?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浅忆 2024-08-30 09:22:27

你检查过文档吗?

PDO::__construct()

PDO::__construct ( string $dsn [, string $username [, string $password [, array $driver_options ]]] )

唯一必需的参数是 DSN,用户名和密码是可选的。

Have you checked the documentation?

PDO::__construct()

PDO::__construct ( string $dsn [, string $username [, string $password [, array $driver_options ]]] )

The only required parameter is the DSN, username and password are optional.

别在捏我脸啦 2024-08-30 09:22:27

如果您知道您的 dn 需要密码,您可能需要在尝试创建 PDO 对象之前检查它是否不为空。或者只是使用 try / catch 来解决这个问题,就像来自 php.net/ 的示例PDO

<?php
/* Connect to an ODBC database using driver invocation */
$dsn = 'mysql:dbname=testdb;host=127.0.0.1';
$user = 'dbuser';
$password = 'dbpass';

try {
    $dbh = new PDO($dsn, $user, $password);
} catch (PDOException $e) {
    echo 'Connection failed: ' . $e->getMessage();
}

?>

If you know that your dn requires a password you might want to check that it is not null before you try creating your PDO-object. Or just use try / catch in that matter, like this example from php.net/PDO

<?php
/* Connect to an ODBC database using driver invocation */
$dsn = 'mysql:dbname=testdb;host=127.0.0.1';
$user = 'dbuser';
$password = 'dbpass';

try {
    $dbh = new PDO($dsn, $user, $password);
} catch (PDOException $e) {
    echo 'Connection failed: ' . $e->getMessage();
}

?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文