function data_fieldname_exists($name, $dataid, $fieldid=0) {
global $CFG;
+ $LIKE = sql_ilike();
if ($fieldid) {
return record_exists_sql("SELECT * from {$CFG->prefix}data_fields AS df
- WHERE df.name LIKE '$name' AND df.dataid = $dataid
+ WHERE df.name $LIKE '$name' AND df.dataid = $dataid
AND ((df.id < $fieldid) OR (df.id > $fieldid))");
} else {
return record_exists_sql("SELECT * from {$CFG->prefix}data_fields AS df
- WHERE df.name LIKE '$name' AND df.dataid = $dataid");
+ WHERE df.name $LIKE '$name' AND df.dataid = $dataid");
}
}
function forum_print_overview($courses,&$htmlarray) {
global $USER, $CFG;
+ $LIKE = sql_ilike();
if (empty($courses) || !is_array($courses) || count($courses) == 0) {
return array();
}
$sql = substr($sql,0,-3); // take off the last OR
- $sql .= ") AND l.module = 'forum' AND action LIKE 'add post%' "
+ $sql .= ") AND l.module = 'forum' AND action $LIKE 'add post%' "
." AND userid != ".$USER->id." GROUP BY cmid,l.course,instance";
if (!$new = get_records_sql($sql)) {
/// messages posted in the course since that date
global $CFG;
+ $LIKE = sql_ilike();
$heading = false;
$content = false;
if (!$logs = get_records_select('log', 'time > \''.$timestart.'\' AND '.
'course = \''.$course->id.'\' AND '.
'module = \'forum\' AND '.
- 'action LIKE \'add %\' ', 'time ASC')){
+ 'action $LIKE \'add %\' ', 'time ASC')){
return false;
}
$selectdiscussion .= ")";
- // Some differences in syntax for PostgreSQL.
+ // Some differences SQL
+ $LIKE = sql_ilike();
+ $NOTLIKE = 'NOT ' . $LIKE;
if ($CFG->dbtype == 'postgres7') {
- $LIKE = 'ILIKE'; // Case-insensitive
- $NOTLIKE = 'NOT ILIKE'; // Case-insensitive
$REGEXP = '~*';
$NOTREGEXP = '!~*';
- } else { // Note the LIKE are casesensitive for Oracle. Oracle 10g is required to use
- $LIKE = 'LIKE'; // the caseinsensitive search using regexp_like() or NLS_COMP=LINGUISTIC :-(
- $NOTLIKE = 'NOT LIKE'; // See http://docs.moodle.org/en/XMLDB_Problems#Case-insensitive_searches
+ } else {
$REGEXP = 'REGEXP';
$NOTREGEXP = 'NOT REGEXP';
}
$where = '';
$fullpivot = 0;
- if ($CFG->dbtype == "postgres7") {
- $LIKE = "ILIKE"; // case-insensitive
- } else {
- $LIKE = "LIKE";
- }
+ $LIKE = sql_ilike();
+ $NOTLIKE = 'NOT ' . $LIKE;
switch ( $mode ) {
case 'search':
/// Some differences in syntax for PostgreSQL
if ($CFG->dbtype == "postgres7") {
- $LIKE = "ILIKE"; // case-insensitive
- $NOTLIKE = "NOT ILIKE"; // case-insensitive
$REGEXP = "~*";
$NOTREGEXP = "!~*";
} else {
- $LIKE = "LIKE";
- $NOTLIKE = "NOT LIKE";
$REGEXP = "REGEXP";
$NOTREGEXP = "NOT REGEXP";
}