使用 PDO 创建新的 SQLite 数据库
我想在下一个项目中提供设置功能,我想知道是否可以使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您打开与不存在的数据库的连接时,就会创建一个新的 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.