diff options
Diffstat (limited to 'include/dba_driver.php')
-rw-r--r-- | include/dba_driver.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/dba_driver.php b/include/dba_driver.php new file mode 100644 index 000000000..a1d4dfab3 --- /dev/null +++ b/include/dba_driver.php @@ -0,0 +1,10 @@ +<?php /** @file */ + +abstract class dba_driver { + + abstract protected function connect($server,$user,$pass,$db); + abstract protected function q($sql); + abstract protected function escape($str); + abstract protected function close(); + +}
\ No newline at end of file |