Lines Matching refs:dbh
12 @$dbh->exec('DROP TABLE testz');
13 $dbh->exec('CREATE TABLE testz (A VARCHAR(10))');
14 $dbh->exec("INSERT INTO testz VALUES ('A')");
15 $dbh->exec("INSERT INTO testz VALUES ('A')");
16 $dbh->exec("INSERT INTO testz VALUES ('B')");
17 $dbh->commit();
21 $stmt = $dbh->prepare($query);
28 $stmt = $dbh->prepare('UPDATE testZ SET A="A" WHERE A != ?');
31 $dbh->commit();
33 $stmt = $dbh->prepare('DELETE FROM testz');
37 $dbh->commit();
39 $dbh->exec('DROP TABLE testz');
42 unset($dbh);