1
0
This repository has been archived on 2021-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
gallery3-contrib/3.0/obsolete/web_client/system/helpers/db.php

50 lines
1001 B
PHP

<?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