blob: 8f4147e515b2081605f1dfbeb0a114839f88b282 (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
<?php
/**
* TPgsqlCommandBuilder class file.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2012 PradoSoft
* @license http://www.pradosoft.com/license/
* @version $Id: TDbCommandBuilder.php 1863 2007-04-12 12:43:49Z wei $
* @package System.Data.Common
*/
Prado::using('System.Data.Common.TDbCommandBuilder');
/**
* TPgsqlCommandBuilder provides specifics methods to create limit/offset query commands
* for Pgsql database.
*
* @author Wei Zhuo <weizho[at]gmail[dot]com>
* @version $Id: TDbCommandBuilder.php 1863 2007-04-12 12:43:49Z wei $
* @package System.Data.Common
* @since 3.1
*/
class TPgsqlCommandBuilder extends TDbCommandBuilder
{
/**
* Overrides parent implementation. Only column of type text or character (and its variants)
* accepts the LIKE criteria.
* @param array list of column id for potential search condition.
* @param string string of keywords
* @return string SQL search condition matching on a set of columns.
*/
public function getSearchExpression($fields, $keywords)
{
$columns = array();
foreach($fields as $field)
{
if($this->isSearchableColumn($this->getTableInfo()->getColumn($field)))
$columns[] = $field;
}
return parent::getSearchExpression($columns, $keywords);
}
/**
*
* @return boolean true if column can be used for LIKE searching.
*/
protected function isSearchableColumn($column)
{
$type = strtolower($column->getDbType());
return $type === 'character varying' || $type === 'varchar' ||
$type === 'character' || $type === 'char' || $type === 'text';
}
/**
* Overrides parent implementation to use PostgreSQL's ILIKE instead of LIKE (case-sensitive).
* @param string column name.
* @param array keywords
* @return string search condition for all words in one column.
*/
protected function getSearchCondition($column, $words)
{
$conditions=array();
foreach($words as $word)
$conditions[] = $column.' ILIKE '.$this->getDbConnection()->quoteString('%'.$word.'%');
return '('.implode(' AND ', $conditions).')';
}
}
|