当我获得lastInsertId()时,我的pdo连接发生了一些奇怪的事情:在90%的情况下它运行良好,但在10%的情况下它返回0(我不知道是否真的为0或FALSE) 。 但在100%的情况下,我的记录已成功插入。
这是我的代码:
function execute_insert($sql, $values) {
try {
$dbConnection = new PDO('mysql:dbname=mydb;host=localhost;charset=utf8', 'username', 'mypass');
$dbConnection->setAttribute(PDO::ATTR_EMULATE_PREPARES, false);
$dbConnection->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$dbConnection->beginTransaction();
$stmt = $dbConnection->prepare($sql);
$stmt->execute($values);
$i = $dbConnection->lastInsertId();
$dbConnection->commit();
return $i;
} catch (PDOException $e) {
echo "erro :S - " . $e->getMessage();
die();
}
}
//blablabla
$sql = "INSERT INTO ai_pessoas(nome, tipo, cpf, orgao_emissor_id,
rg_uf, rg, telefone1, telefone2, celular1, cidade_id, cep, endereco,
numero,complemento,bairro, email_principal, email_secundario, email_principal_confirmado,
dt_nascimento, oferta_id) ";
$sql .= "VALUES(:nome,1,:cpf,:orgaorg,:ufrg,:rg,:telefone,:outroTelefone,:celular,:cidade,:cep,:endereco,:numero,:complemento,:bairro,:email,:emailAlternativo,FALSE,:datanasc,:idOfertaAtual);";
$idPessoa = execute_insert($sql,
array(
':nome' => $nome,
':cpf' => $cpf,
':orgaorg' => $orgaorg,
':ufrg' => $ufrg,
':rg' => $rg,
':telefone' => $telefone,
':outroTelefone' => $outroTelefone,
':celular' => $celular,
':cidade' => $cidade,
':cep' => $cep,
':endereco' => $endereco,
':numero' => $numero,
':complemento' => $complemento,
':bairro' => $bairro,
':email' => $email,
':emailAlternativo' => $emailAlternativo,
':datanasc' => $datanasc,
':idOfertaAtual' => $idOfertaAtual
));
if ($idPessoa > 0){
//sometimes enters here, sometimes not
}
我的记录已被插入,但“if($ idPessoa> 0)”有时会执行,这意味着$ idPessoa为0或FALSE。
有任何线索吗?
非常感谢!
答案 0 :(得分:0)
您可以为此目的尝试LAST_INSERT_ID()。
P.S。您的功能每次都会连接。
P.P.S。我也看到你没有处理错误和回滚。我认为你的10%插入失败了。探索关于双重调用此函数,因为您在某些字段上具有UNIQUE索引。并添加支票result of execute和errorInfo。