Lin*_*nCR 2 mysql database pdo
我有一个关于MySQL的表与主键,我插入到该表,我想恢复已插入的最后一行的ID,我知道我必须使用LAST_INSERT_ID
但我的问题是在使用该语句后将值插入另一个表没有主键,我可以再次使用它来获取第一个插入的确切ID吗?
$ php pdo#
include_once 'type_model.php';
$t = new Type_Model();
$typeID = $t->getTypeID($type);
include_once 'informationObject_model.php';
$i = new InformationObject_Model();
$answerIoID = $i->getIOID($ioAnswer);
$query = "INSERT INTO question (info, text, answer, answerIoID, firstChoice, secondChoice, thirdChoice,
firstHint, secondHint, typeID) VALUES (:info, :text, :answer, :answerIoID,
:firstChoice, :secondChoice, :thirdChoice, :firstHint, :secondHint, :typeID)";
$sth = $this->db->prepare($query);
$sth->execute(array(
':info' => $info,
':text' => $text,
':answer' => $answer,
':answerIoID' => $answerIoID,
':firstChoice' => $choices[0],
':secondChoice' => $choices[1],
':thirdChoice' => $choices[2],
':firstHint' => $hints[0],
':secondHint' => $hints[1],
':typeID' => $typeID
));
if ($about == "Place") {
include_once 'place_model.php';
$p = new Place_Model();
$placeID = $p->getPlaceID($place);
$query = "INSERT INTO `question-place` (questionID, placeID) VALUES
(LAST_INSERT_ID() ,:placeID )";
$sth = $this->db->prepare($query);
$sth->execute(array(
':placeID' => $placeID
));
}
Run Code Online (Sandbox Code Playgroud)
现在,如果about==place可以写这个吗?
$query = "INSERT INTO `question-io` (questionID, io) VALUES
(LAST_INSERT_ID() ,:io )";
$sth = $this->db->prepare($query);
$sth->execute(array(
':io' => $io
));
Run Code Online (Sandbox Code Playgroud)
我没有尝试过,因为我无法尝试,直到我填写所有表格而且我无法填写所有表格而不知道ID :)
Wil*_*aan 12
如果您的对象$this->db引用PDO对象,那么您可以使用它
$ID=$this->db->lastInsertId();
Run Code Online (Sandbox Code Playgroud)
要保存您的ID,最好将其保存在变量中
所以在每次插入后,您可以保存该插入行的ID
并记住你必须完全使用它 $sth->execute()