Database abstraction
This commit is contained in:
17
core/Driver/SQL/Query/Query.class.php
Normal file
17
core/Driver/SQL/Query/Query.class.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace Driver\SQL\Query;
|
||||
|
||||
abstract class Query {
|
||||
|
||||
protected $sql;
|
||||
|
||||
public function __construct($sql) {
|
||||
$this->sql = $sql;
|
||||
}
|
||||
|
||||
public abstract function execute();
|
||||
|
||||
};
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user