69df99b97d3525354fb53a8eea732d932f03de71
[rock.divinelegy.git] / DataAccess / Queries / IQueryBuilder.php
1 <?php
2
3 /*
4 * To change this license header, choose License Headers in Project Properties.
5 * To change this template file, choose Tools | Templates
6 * and open the template in the editor.
7 */
8
9 namespace DataAccess\Queries;
10
11 interface IQueryBuilder
12 {
13 public function setBaseQuery($query);
14 public function limit($start, $end);
15 public function where($column, $operator, $value);
16 public function join($type, $tableA, $columnA, $tableB, $columnB);
17 public function null($columnName);
18 public function buildQuery();
19 }