Lines Matching refs:dbh
17 $dbh = getDbConnection();
18 $dbh->exec('CREATE TABLE test48877 (A integer)');
19 $dbh->exec("INSERT INTO test48877 VALUES ('1')");
20 $dbh->exec("INSERT INTO test48877 VALUES ('2')");
21 $dbh->exec("INSERT INTO test48877 VALUES ('3')");
25 $stmt = $dbh->prepare($query);
33 $stmt = $dbh->prepare('DELETE FROM test48877');
37 unset($dbh);
43 $dbh = getDbConnection();
44 @$dbh->exec("DROP TABLE test48877");
45 unset($dbh);