18 public function in($field, $values, $negate =
false,
$type =
"")
20 if (!is_array($values) || count($values) == 0) {
23 return $negate ?
' 1=1 ' :
' 1=2 ';
27 $str = $field . (($negate) ?
" NOT" :
"") .
" IN (?" . str_repeat(
",?", count($values) - 1) .
")";
29 $str = $field . (($negate) ?
" NOT" :
"") .
" IN (";
31 foreach ($values as $v) {
49 return $this->db_instance->quote($value,
$type);
58 public function concat(array $values, $allow_null =
true)
60 if (!count($values)) {
66 foreach ($values as $field_info) {
67 $val = $field_info[0];
74 $concat .=
'COALESCE(';
97 public function locate($a_needle, $a_string, $a_start_pos = 1)
99 $locate =
' LOCATE( ';
100 $locate .= $a_needle;
102 $locate .= $a_string;
104 $locate .= $a_start_pos;
129 return $this->db_instance->quoteIdentifier($identifier);
145 if (empty($fields)) {
148 $query_fields_array = array();
149 foreach ($fields as $field_name => $field) {
150 $query_fields_array[] = $this->db_instance->getFieldDefinition()->getDeclaration($field[
'type'], $field_name, $field);
153 $query_fields = implode(
', ', $query_fields_array);
155 if (!empty($options[
'primary'])) {
156 $query_fields .=
', PRIMARY KEY (' . implode(
', ', array_keys($options[
'primary'])) .
')';
159 $query =
"CREATE TABLE $name ($query_fields)";
161 $options_strings = array();
163 if (!empty($options[
'comment'])) {
164 $options_strings[
'comment'] =
'COMMENT = ' . $this->
quote($options[
'comment'],
'text');
167 if (!empty($options[
'charset'])) {
168 $options_strings[
'charset'] =
'DEFAULT CHARACTER SET ' . $options[
'charset'];
169 if (!empty($options[
'collate'])) {
170 $options_strings[
'charset'] .=
' COLLATE ' . $options[
'collate'];
175 if (!empty($options[
'type'])) {
176 $type = $options[
'type'];
179 $options_strings[] =
"ENGINE = $type";
182 if (!empty($options_strings)) {
183 $query .=
' ' . implode(
' ', $options_strings);
198 public function like($column,
$type, $value =
"?", $case_insensitive =
true)
200 if (!in_array(
$type, array(
209 if ($case_insensitive) {
210 return "UPPER(" . $column .
") LIKE(UPPER(?))";
212 return $column .
" LIKE(?)";
215 if ($case_insensitive) {
217 return " UPPER(" . $column .
") LIKE(UPPER(" . $this->
quote($value,
'text') .
"))";
220 return " " . $column .
" LIKE(" . $this->
quote($value,
'text') .
")";
239 public function lock(array $tables)
241 $lock =
'LOCK TABLES ';
244 foreach ($tables as $table) {
249 if (isset($table[
'sequence']) && $table[
'sequence']) {
250 $table_name = $this->db_instance->getSequenceName($table[
'name']);
252 $table_name = $table[
'name'];
255 $lock .= ($table_name .
' ');
257 if ($table[
'alias'] ?? null) {
258 $lock .= ($table[
'alias'] .
' ');
261 switch ($table[
'type']) {
281 return 'UNLOCK TABLES';
293 if ($a_collation !=
"") {
294 $sql =
"CREATE DATABASE `" . $a_name .
"` CHARACTER SET " . $a_charset .
" COLLATE " . $a_collation;
296 $sql =
"CREATE DATABASE `" . $a_name .
"` CHARACTER SET " . $a_charset;
310 public function groupConcat($a_field_name, $a_seperator =
",", $a_order = null)
312 if ($a_order === null) {
313 $sql =
"GROUP_CONCAT(" . $a_field_name .
" SEPARATOR " . $this->
quote($a_seperator,
"text") .
")";
315 $sql =
"GROUP_CONCAT(" . $a_field_name .
" ORDER BY " . $a_order .
" SEPARATOR " . $this->
quote($a_seperator,
"text") .
")";
324 public function cast($a_field_name, $a_dest_type)
326 return $a_field_name;
quoteIdentifier($identifier)
locate($a_needle, $a_string, $a_start_pos=1)
quote($value, $type=null)
Class ilPDOStatement is a Wrapper Class for PDOStatement.
createTable($name, $fields, $options=array())
createDatabase($a_name, $a_charset="utf8", $a_collation="")
Class ilDatabaseException.
free(ilPDOStatement $statement)
groupConcat($a_field_name, $a_seperator=",", $a_order=null)
closeCursor()
Pdo allows for a manual closing of the cursor.
like($column, $type, $value="?", $case_insensitive=true)
cast($a_field_name, $a_dest_type)
string
concat(array $values, $allow_null=true)
in($field, $values, $negate=false, $type="")