00001 <?php
00002 require_once dirname(__FILE__) . '/idbsqlbuilder.cls.php';
00003
00004
00005
00006
00007
00008
00009
00010 interface IDBWhere extends IDBSQLBuilder {
00011 const LOGIC_AND = 'AND';
00012 const LOGIC_OR = 'OR';
00013
00014 const OP_IN = 'IN';
00015 const OP_NOT_IN = 'NOT IN';
00016 const OP_LIKE = 'LIKE';
00017 const OP_IS_NULL = 'IS NULL';
00018 const OP_NOT_NULL = 'IS NOT NULL';
00019
00020
00021
00022
00023 const OP_IN_SET = 'IN_SET';
00024
00025
00026
00027 const OP_NOT_IN_SET = 'NOT_IN_SET';
00028
00029
00030
00031
00032
00033
00034 public function get_table();
00035
00036
00037
00038
00039
00040
00041 public function get_column();
00042
00043
00044
00045
00046
00047
00048 public function get_operator();
00049
00050
00051
00052
00053
00054
00055 public function get_value();
00056
00057
00058
00059
00060
00061
00062 public function get_logical_operator();
00063 }