Home  >  Article  >  Backend Development  >  关于sqlite的有关问题

关于sqlite的有关问题

WBOY
WBOYOriginal
2016-06-13 13:31:53999browse

关于sqlite的问题
使用sqlite_open函数会自动创建一个无后缀名的数据库文件。请问和我用管理工具生成的DB3的SQLITE数据库文件有什么关系吗?

------解决方案--------------------
后缀名 .db3 表示它是由 sqlite3 创建的
所以你需要加载 php_sqlite3 扩展
sqlite3 与 sqlite(一般指sqlite2)由于数据库内部完全不同,所以是不兼容的
为了避免混淆,php5.3的php_sqlite3扩展,不提供分立的函数,必须与 php_pdo_sqlite 扩展联合使用

sqlite 数据库文件不存在默认后缀,所以使用时必须将名字写全

你出现
Warning: sqlite_open() [function.sqlite-open]: file is encrypted or is not a database in D:\xampp\htdocs\doctrine2\index.php on line 2
表示你的数据库文件不是 SQLite2 的

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn