使用 PDO 创建新的 SQLite 数据库

发布于 2024-08-14 01:26:58 字数 126 浏览 7 评论 0原文

我想在下一个项目中提供设置功能,我想知道是否可以使用 PDO 从头开始​​创建 SQLite 3 数据库,或者我只是坚持通过 DSN 连接到现有数据库?

如果 PDO 不可能,有什么方法可以通过 PHP 创建新的数据库吗?

I want to provide a setup feature in my next project and I'm wondering if it's possible to create a SQLite 3 database from scratch with PDO or I'm just stuck at connecting to existing databases via DSN?

If it isn't possible with PDO is there any way to create a new DB via PHP?

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

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

发布评论

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

评论(1

少女的英雄梦 2024-08-21 01:26:58

当您打开与不存在的数据库的连接时,就会创建一个新的 sqlite 数据库。您可以检查文件是否存在,如果不存在,则创建一个新的数据库连接并插入表。

A new sqlite database is created when you open a connection to one that doesn't exist. You can just check if the file exists, and then if it doesn't, then just create a new database connection and insert the tables.

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