誰もが理由を説明できますか
$sql->execute($params);
を返しますがFALSE
、
print $pdo->errorCode();
print_r($pdo->errorInfo());
両方とも戻りSQLSTATE
00000
ます。つまり、ドキュメントの成功によると?それはであり、INSERT
実際には何もデータベースに挿入されていません...それで、なぜ私はから成功メッセージを受け取るのSQLSTATE
ですか?
それが役立つ場合は、これがコードです...
$sql = $pdo->prepare("
INSERT INTO user (
username, fname, pass, salt, email,
loc_id_home, country_id_home, region_id_home,
cont_id_home, timestamp_reg, timestamp_upd, timestamp_lastonline,
online_status, gender, birthdate
)
VALUES (
:username,:fname,:pass,:random_salt,:email,
:loc_id_home,:country_id_home,:region_id_home,
:cont_id_home,'".time()."','".time()."','".time()."',
1,:gender,:birthdate)
");
$params=array(
':username'=>$username,
':fname'=>$fname,
':pass'=>$pass,
':random_salt'=>$random_salt,
':email'=>$email,
':loc_id_home'=>$loc_id_home,
':country_id_home'=>$country,
':region_id_home'=>$region,
':cont_id_home'=>$continent,
':gender'=>$gender,
':birthdate'=>$birthdate
);
$sql->execute($params);
print $pdo->errorCode();
print_r($pdo->errorInfo());