Subversion Repositories oidplus

Rev

Rev 223 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 223 Rev 227
Line 17... Line 17...
17
 * limitations under the License.
17
 * limitations under the License.
18
 */
18
 */
19
 
19
 
20
if (!defined('IN_OIDPLUS')) die();
20
if (!defined('IN_OIDPLUS')) die();
21
 
21
 
22
abstract class OIDplusDataBase extends OIDplusPlugin {
22
abstract class OIDplusDataBasePlugin extends OIDplusPlugin {
23
        protected $connected = false;
23
        protected $connected = false;
24
 
24
 
25
        public abstract static function name();
25
        public abstract static function name();
26
        public abstract function query($sql, $prepared_args=null);
26
        public abstract function query($sql, $prepared_args=null);
27
        public abstract function num_rows($res);
27
        public abstract function num_rows($res);