$studentId = 57004542323382
$companyOfferId = 7

$sql = 'INSERT INTO studentPlacement (companyOfferId, studentId) VALUES (?, ?)';

if ($stmt = $db->prepare($sql)) {
    $stmt->bind_param("ii", $offerId, $studentId);
    $stmt->execute();
    $insertId = $stmt->insert_id;
    $stmt->close();
}

我的问题在于 studentId 变量。它的值太长而无法存储为标准整数,因此必须存储为 bigint。将参数绑定(bind)为整数时,它只需输入“1”作为 studentId 值。据我了解,bind_param 支持 4 种类型;整数、字符串、blob 和 double。有没有人对我如何解决这个问题有任何想法,以便我可以将值作为 bigint 正确发送?

谢谢

最佳答案

使用 $studentId = '57004542323382'; // quotes added 和 string param 进行绑定(bind)。

关于PHP 绑定(bind) 'bigint' 数据类型(MySQLi 准备语句),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19908292/

10-13 09:28