summaryrefslogtreecommitdiff
path: root/ext/pdo_odbc/tests/prepare.inc
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pdo_odbc/tests/prepare.inc')
-rwxr-xr-xext/pdo_odbc/tests/prepare.inc24
1 files changed, 0 insertions, 24 deletions
diff --git a/ext/pdo_odbc/tests/prepare.inc b/ext/pdo_odbc/tests/prepare.inc
deleted file mode 100755
index c5c12a97b7..0000000000
--- a/ext/pdo_odbc/tests/prepare.inc
+++ /dev/null
@@ -1,24 +0,0 @@
-<?php
-
-require_once('connection.inc');
-
-$SQL = array(
- 'create'=>'CREATE TABLE test(id int NOT NULL PRIMARY KEY, val VARCHAR(10))'
-);
-
-//$DB = new pdo($CONNECTION, $USER, $PASSWD);
-try {
- $DB = new pdo($CONNECTION);
-} catch (Exception $tmp) {
- $DB = NULL;
- return;
-}
-
-foreach(array('test','classtypes') as $name)
-{
- $DB->exec("DROP TABLE $name");
-}
-
-$DB->setAttribute(PDO_ATTR_ERRMODE, PDO_ERRMODE_WARNING);
-
-?>