blob: ce7583b767d8ef3b67f45de4d4f954fc84fde065 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
<?php defined('SYSPATH') or die('No direct script access.');
/**
* Database helper class.
*
* $Id: $
*
* @package Core
* @author Kohana Team
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license
*/
class db_Core {
public static function query($sql)
{
return new Database_Query($sql);
}
public static function build($database = 'default')
{
return new Database_Builder($database);
}
public static function select($columns = NULL)
{
return db::build()->select($columns);
}
public static function insert($table = NULL, $set = NULL)
{
return db::build()->insert($table, $set);
}
public static function update($table = NULL, $set = NULL, $where = NULL)
{
return db::build()->update($table, $set, $where);
}
public static function delete($table = NULL, $where = NULL)
{
return db::build()->delete($table, $where);
}
public static function expr($expression)
{
return new Database_Expression($expression);
}
} // End db
|