aboutsummaryrefslogtreecommitdiffstats
path: root/include/dba_driver.php
blob: a1d4dfab3e8d3c9523349b513c153d18010fd00e (plain) (blame)
1
2
3
4
5
6
7
8
9
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();

}