26 $query_fields_array = array();
27 foreach ($fields as $field_name => $field) {
28 $query_fields_array[] = $this->db_instance->getFieldDefinition()->getDeclaration($field[
'type'], $field_name, $field);
31 $query_fields = implode(
', ', $query_fields_array);
33 if (!empty($options[
'primary'])) {
34 $query_fields .=
', PRIMARY KEY (' . implode(
', ', array_keys($options[
'primary'])) .
')';
37 $query =
"CREATE TABLE $name ($query_fields)";
39 $options_strings = array();
41 if (!empty($options[
'comment'])) {
42 $options_strings[
'comment'] =
'COMMENT = ' . $this->
quote($options[
'comment'],
'text');
45 if (!empty($options[
'charset'])) {
46 $options_strings[
'charset'] =
'DEFAULT CHARACTER SET ' . $options[
'charset'];
47 if (!empty($options[
'collate'])) {
48 $options_strings[
'charset'] .=
' COLLATE ' . $options[
'collate'];
53 if (!empty($options[
'type'])) {
54 $type = $options[
'type'];
57 $options_strings[] =
"ENGINE = $type";
60 if (!empty($options_strings)) {
61 $query .=
' ' . implode(
' ', $options_strings);
75 public function in($field, $values, $negate =
false,
$type =
"")
77 if (count($values) == 0) {
80 return $negate ?
' 1=1 ' :
' 1=2 ';
84 $str = $field . (($negate) ?
" NOT" :
"") .
" IN (?" . str_repeat(
",?", count($values) - 1) .
")";
86 $str = $field . (($negate) ?
" NOT" :
"") .
" IN (";
88 foreach ($values as $v) {
106 return $this->db_instance->quote($value,
$type);
115 public function concat(array $values, $allow_null =
true)
117 if (!count($values)) {
121 $concat =
' CONCAT(';
123 foreach ($values as $field_info) {
124 $val = $field_info[0];
131 $concat .=
'COALESCE(';
154 public function locate($a_needle, $a_string, $a_start_pos = 1)
156 $locate =
' STRPOS(SUBSTR(';
157 $locate .= $a_string;
159 $locate .= $a_start_pos;
161 $locate .= $a_needle;
163 $locate .= --$a_start_pos;
187 return $this->db_instance->quoteIdentifier($identifier);
199 public function like($column,
$type, $value =
"?", $case_insensitive =
true)
201 if (!in_array(
$type, array(
210 if ($case_insensitive) {
211 return "UPPER(" . $column .
") LIKE(UPPER(?))";
213 return $column .
" LIKE(?)";
216 if ($case_insensitive) {
218 return " UPPER(" . $column .
") LIKE(UPPER(" . $this->
quote($value,
'text') .
"))";
221 return " " . $column .
" LIKE(" . $this->
quote($value,
'text') .
")";
240 public function lock(array $tables)
242 $lock =
'LOCK TABLES ';
245 foreach ($tables as $table) {
250 if (isset($table[
'sequence']) && $table[
'sequence']) {
251 $table_name = $this->db_instance->getSequenceName($table[
'name']);
253 $table_name = $table[
'name'];
256 $lock .= ($table_name .
' ');
258 if ($table[
'alias']) {
259 $lock .= ($table[
'alias'] .
' ');
262 switch ($table[
'type']) {
282 return 'UNLOCK TABLES';
294 if ($a_collation !=
"") {
295 $sql =
"CREATE DATABASE " . $a_name .
" CHARACTER SET " . $a_charset .
" COLLATE " . $a_collation;
297 $sql =
"CREATE DATABASE " . $a_name .
" CHARACTER SET " . $a_charset;
311 public function groupConcat($a_field_name, $a_seperator =
",", $a_order = null)
313 if ($a_order === null) {
314 $sql =
"STRING_AGG(" . $a_field_name .
", " . $this->
quote($a_seperator,
"text") .
")";
316 $sql =
"STRING_AGG(" . $a_field_name .
", " . $this->
quote($a_seperator,
"text") .
" ORDER BY " . $a_order .
")";
325 public function cast($a_field_name, $a_dest_type)
327 return "CAST({$a_field_name} AS " . $this->db_instance->getFieldDefinition()->getTypeDeclaration(array(
"type" => $a_dest_type)) .
")";
groupConcat($a_field_name, $a_seperator=",", $a_order=null)
Class ilPDOStatement is a Wrapper Class for PDOStatement.
in($field, $values, $negate=false, $type="")
cast($a_field_name, $a_dest_type)
string
like($column, $type, $value="?", $case_insensitive=true)
Class ilDatabaseException.
createDatabase($a_name, $a_charset="utf8", $a_collation="")
locate($a_needle, $a_string, $a_start_pos=1)
concat(array $values, $allow_null=true)
free(ilPDOStatement $statement)
closeCursor()
Pdo allows for a manual closing of the cursor.
quoteIdentifier($identifier)
Class ilPostgresQueryUtils.
createTable($name, $fields, $options=array())
quote($value, $type=null)