$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。将参数绑定为整数时,只需输入“1”作为studentId值。据我所知bind_param
支持4种类型;整数,字符串,blob和double。有没有人对如何解决这个问题有任何想法,所以我可以正确地将值作为bigint发送?
由于
答案 0 :(得分:8)
使用$studentId = '57004542323382'; // quotes added
和字符串参数进行绑定。