使用WampServer和phpMyAdmin。
以下是代码:
function createRecord(){
$id=null;
var_dump("ID: ",$id);
$length=0;
$dbh=$this->dbConnect();
var_dump("DBH: ", $dbh);
$dbh->beginTransaction();
//try{
var_dump("DBH: ", $dbh);
//$dbh->beginTransaction();
$insertInSets=$dbh->prepare("INSERT INTO 'sets' () VALUES ()"); // PDO Statement object. ID is generated via autoincrement.
var_dump("InsertInSets: ", $insertInSets);
$id=$dbh->lastInsertId();
var_dump("ID: ",$id);
$insertInClosures=$dbh->prepare("INSERT INTO 'closures' (ancestor,descendant,length) VALUES (:ancestor,:descendant,:length)");
var_dump("InsertInClosures: ", $insertInClosures);
$insertInClosures->bindParam(":ancestor", $id); //<- This is line 22
$insertInClosures->bindParam(":descendant", $id);
$insertInClosures->bindParam(":length", $length);
//$dbh->commit();
exit;
我尝试使用和不使用try
和交易。无论如何,我得到以下内容:
Fatal error: Call to a member function bindParam() on a non-object in C:\wamp\www\Projetv0.2\Class_SetDAO.php on line 22
var_dumps的输出如下:
string 'ID: ' (length=4)
null
string 'DBH: ' (length=5)
object(PDO)[8]
string 'DBH: ' (length=5)
object(PDO)[8]
string 'InsertInSets: ' (length=14)
boolean false
string 'ID: ' (length=4)
string '0' (length=1)
string 'InsertInClosures: ' (length=18)
boolean false
为什么查询不起作用....
答案 0 :(得分:2)
'sets'
未被解析为表名; SQL认为它是一个字符串。
如果您使用的是MySQL,请尝试将撇号切换为反引号。其他系统可能使用(ANSI标准)双引号。
或者,完全摆脱报价。 sets
不是我曾经使用的任何SQL风格的关键字,所以如果你使用任何这些风格,你根本不需要引用它。
答案 1 :(得分:1)
专栏&amp;表名应该封装在(`)
中INSERT INTO `sets` () VALUES ()