summaryrefslogtreecommitdiffstats
path: root/app/class/database.iface.php
blob: dcd64ba161e3d2bf2b6922c1774495b4dccc29fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

/*
 * Generic interface for the various database drivers Scrott may implement support for
 */
interface Database
{
    function close();
    function query($query);
    function esc($string);
}

?>