Lines Matching refs:dbh
14 $dbh = getDbConnection();
15 $dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_WARNING);
18 $dbh->query("CREATE TABLE {$table} (val int)");
20 echo "dbh error";
21 $dbh->query("INSERT INTO {$table} VALUES ('str')");
26 $stmt = $dbh->prepare("INSERT INTO {$table} VALUES ('str')");
29 unset($dbh);
34 $dbh = getDbConnection();
35 @$dbh->exec('DROP TABLE error_handle');
36 unset($dbh);
39 dbh error