尝试获取SCOPE_IDENTITY()(最后一个ID插入到数据库中)并将其作为变量存储在我的PHP函数中。
看看我在堆栈溢出时可能找到的所有答案,而且我还没有达到目标。
这就是我目前所拥有的:
// Confirm booking (update database) function
public function insert_userPost($conn)
{
// SQL INSERT command
$sql = ("
INSERT INTO userPost (content, submitted, emotion)
VALUES ('$this->post', 'NOW()', '$this->emotion');
");
if ($conn->query($sql) === TRUE)
{
//echo "success";
$sql = ("SELECT SCOPE_IDENTITY() as Id");
$result = $conn->query($sql);
echo $result;
//header('Location: feed.php?filter=all&page=1');
}
else
{
echo "Error: " . $sql . "<br>" . $conn->error;
}
}
我做错了什么?
编辑:
另外......在构造中,我试图在$ this-&gt;帖子中传递Id($ this-&gt; Id),但它返回0.我可以看到这是由于事实我在查询完成后只设置$ this-&gt; Id,因此返回0但我不确定如何继续。有什么建议吗?
// Construct
public function __construct($content, $emotion, $conn)
{
$this->content = $content;
$this->emotion = $emotion;
$this->post =
"<div id=\'post\'>
<div id=\'postContent\'>
<p><b>I\'m $this->emotion because</b> $this->Id $this->content<span class=\'emot\'id=\'$this->emotion\'></span></p>
</div>
<div id=\'postInfo\'>
<span class=\'postRelate\' title=\'Click to relate +1\'><p><b>relate</b> (0)</p></span>
<span class=\'postSubmitted\'><p>submitted X minutes ago</p></span>
</div>
</div>";
}
// Confirm booking (update database) function
public function insert_userPost($conn)
{
// SQL INSERT command
$sql = ("INSERT INTO userPost (content, submitted, emotion)
VALUES ('$this->post', NOW(), '$this->emotion')");
if ($conn->query($sql) === TRUE)
{
//echo "success";
echo $this->Id = $conn->insert_id;
//header('Location: feed.php?filter=all&page=1');
}
else
{
echo "Error: " . $sql . "<br>" . $conn->error;
}
}
答案 0 :(得分:3)
如果你正在使用MySQL,那么你需要使用Activate
,这是SQLServer的等价物。
LAST_INSERT_ID()
您还可以使用php属性$sql = "SELECT LAST_INSERT_ID() as Id";
答案 1 :(得分:3)
首先,您的问题标记为mysql
,但SCOPE_IDENTITY()
是SQL Server函数。话虽如此,您的代码包含$conn->error,因此我假设您正在使用带有MySQLi扩展名的MySQL。
与SQL Server SCOPE_IDENTITY()
等效的MySQL是LAST_INSERT_ID()。但是调用它需要一个额外的查询,这很麻烦和更慢。
相反,建议您使用内置的MySQLi功能,即连接实例的$insert_id属性:
$id = $conn->insert_id;
大多数SQL库都有内置功能。如果您使用PDO作为数据库抽象层,则可以类似地使用PDO::lastInsertId():
$id = $pdo->lastInsertId();
这适用于SQL Server和MySQL(以及其他)。
答案 2 :(得分:0)
根据我对Scope_Identity的理解,你可以这样使用它:
// Confirm booking (update database) function
public function insert_userPost($conn)
{
// SQL INSERT command
$sql = ("
INSERT INTO userPost (content, submitted, emotion)
VALUES ('$this->post', 'NOW()', '$this->emotion');
SELECT SCOPE_IDENTITY() as Id
");
if ($conn->query($sql) === TRUE)
{
$result = $sql;
echo $result;
//header('Location: feed.php?filter=all&page=1');
}
else
{
echo "Error: " . $sql . "<br>" . $conn->error;
}
}
我不完全确定PHP语法,但SQL部分符合我自己的用法。在SQL查询的第二行末尾可能还有一个无关的;
。