无法使用带有sqlite3的php执行DROP TABLE

时间:2019-08-13 07:22:19

标签: php sqlite xampp

我正在使用xampp练习sqlite3,但发现无法使用xampp的内置php和sqlite3执行“ DROP TABLE”语句。(但是,如果我使用来自sqlite网站的sqlite3独立命令行,有效)

我已经检查了exec()的返回值,第一行(“ drop table”一个)返回false。而且我认为这不是会话问题,因为第二行返回true并成功执行。

$db->exec("drop table ".$_SESSION["cid"].";");
$db->exec("delete from rooms where cid = '".$_SESSION["cid"]."';");

并创建一个:

$db->exec("create table ".$_POST["cid"]."(author text not null, content text, update_time integer not null);");

我错过了任何可能的问题吗?

0 个答案:

没有答案