Lines Matching refs:dbh
15 $dbh = getDbConnection();
16 $dbh->exec('CREATE TABLE test_rowcount (A VARCHAR(10))');
17 $dbh->exec("INSERT INTO test_rowcount VALUES ('A')");
18 $dbh->exec("INSERT INTO test_rowcount VALUES ('A')");
19 $dbh->exec("INSERT INTO test_rowcount VALUES ('B')");
23 $stmt = $dbh->prepare($query);
30 $stmt = $dbh->prepare('UPDATE test_rowcount SET A="A" WHERE A != ?');
34 $stmt = $dbh->prepare('DELETE FROM test_rowcount');
39 unset($dbh);
45 $dbh = getDbConnection();
46 @$dbh->exec('DROP TABLE test_rowcount');
47 unset($dbh);