我需要我的PHP应用程序能够创建SQLite表,但前提是它尚不存在。我该怎么做?
您可以使用:
CREATE TABLE IF NOT EXISTS <name> ( /* definition */ )
这是由 SQLite 支持的 (http://www.sqlite.org/syntaxdiagrams.html#create-table-stmt)
CREATE TABLE IF NOT EXISTS ...