1 | <?php namespace Tequilarapido\Database; |
||
5 | class Database |
||
6 | { |
||
7 | |||
8 | /** |
||
9 | * Initialize Illuminate Database connection |
||
10 | * |
||
11 | * @param $dbConfig |
||
12 | */ |
||
13 | public function connect($dbConfig) |
||
20 | |||
21 | |||
22 | public function size($database) |
||
37 | |||
38 | // |
||
39 | // Helpers |
||
40 | // |
||
41 | |||
42 | public static function select($query, $bindings = array()) |
||
46 | |||
47 | public static function update($query, $bindings = array()) |
||
51 | |||
52 | public static function statement($query, $bindings = array()) |
||
56 | |||
57 | public static function enableQueryLog() |
||
61 | |||
62 | public static function getLastQuery() |
||
67 | |||
68 | public static function connection() |
||
72 | |||
73 | public static function schema() |
||
77 | |||
78 | public static function table($table) |
||
82 | |||
83 | public static function beginTransaction() |
||
87 | |||
88 | public static function commit() |
||
92 | |||
93 | public static function rollback() |
||
97 | |||
98 | |||
99 | } |