Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的目标是创建一个稍后将由 iOS 应用程序下载的 sqlite 数据库文件。
我的问题是,如何使用 CodeIgniter 创建一个 sqlite 数据库文件?sqlite 文件的结构是什么?
非常感谢!
只需使用SQLite3类在“原生”PHP 中创建一个新数据库,这与 CodeIgniter 无关!
SQLite3
$db = new SQLite3("todownload.db"); $db->exec("CREATE TABLE whatever ( whatever INT )");