いいタイトルが思いつかなくてすみません。:-(
PDO を使用するのはこれが初めてです。構文については php.net を参照しました。データベースは空で、次のようになります。
Field Type Null Key Default Extra
id int(11) NO PRI NULL auto_increment
query_string text NO NULL
exclude_count tinyint(4) NO NULL
コードを実行すると、ページ テーブルの行が作成または更新されます。DB は変更されません。
ここに私のコードと出力があります:
$dbuser='abc';
$dbpass='password';
$connection = new PDO('mysql:host=127.0.0.1;dbname=mydb', $dbuser, $dbpass);
if(!$connection){echo '<!-- DB CONNECTION ERROR -->';}else{echo '<!-- DB CONNECTION CONFIRMED -->';}
$connection->beginTransaction();
$prep_idcheck=$connection->prepare("SELECT id FROM pages WHERE query_string = :origqs");
$prep_idcheck->bindParam(':origqs', $orig_QS);
$row=$prep_idcheck->fetch();
if($row)
{
echo '<!-- EXDB: We have dealt with this one before. -->';
$existing=true;
}
else
{
echo '<!-- EXDB: This is a new one. -->';
$existing=false;
}
if($existing)
{
$prep_report_excounts=$connection->prepare("UPDATE pages SET exclude_count = :exclude_count WHERE query_string = :origqs");
}
else
{
$prep_report_excounts=$connection->prepare("INSERT INTO pages (exclude_count, query_string) VALUES (:exclude_count,:origqs)");
}
$prep_report_excounts->bindParam(':origqs', $orig_QS);
$prep_report_excounts->bindParam(':exclude_count', $exclude_count);
$status=$prep_report_excounts->execute();
if(!$status)
{
$error=$connection->errorInfo();
echo'<!-- The statement did not execute '."\n";
var_dump($error);
echo'-->';
}
$connection->commit();
?>
出力
<!-- DB CONNECTION CONFIRMED --><!-- EXDB: This is a new one. --><!-- The statement did not execute
array(1) {
[0]=>
string(5) "00000"
}
-->