1

当我得到 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。

有什么线索吗?

非常感谢!

4

1 回答 1

0

为此,您可以尝试LAST_INSERT_ID() 。

PS您的功能每次都连接。

PPS 我还看到您不处理错误和回滚。我认为在您的 10% 插入中失败了。探索有关双重调用此函数的信息,因为您在某些字段上有 UNIQUE 索引。并添加executeerrorInfo的检查结果。

于 2013-05-17T00:26:38.210 回答