php5内置的库是sqlite2,不能操作sqlite3,必须要用PDO连接sqlite3,才可以,比如:

$conn = new PDO( "sqlite:./sqlite/test.db3" );