ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
interface.ilQueryUtilsInterface.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
27 {
31  public function in(string $field, array $values, bool $negate = false, string $type = ""): string;
32 
33 
37  public function quote($value, ?string $type = null): string;
38 
39 
40  public function concat(array $values, bool $allow_null = true): string;
41 
42 
43  public function locate(string $a_needle, string $a_string, int $a_start_pos = 1): string;
44 
45 
46  public function free(ilPDOStatement $statement): bool;
47 
48 
49  public function quoteIdentifier(string $identifier): string;
50 
51 
55  public function createTable(string $name, array $fields, array $options = []): string;
56 
57 
61  public function like(string $column, string $type, string $value = "?", bool $case_insensitive = true): string;
62 
63 
64  public function now(): string;
65 
66 
67  public function lock(array $tables): string;
68 
69 
70  public function unlock(): string;
71 
72 
73  public function createDatabase(string $name, string $charset = "utf8", string $collation = ""): string;
74 
75 
76  public function groupConcat(string $a_field_name, string $a_seperator = ",", string $a_order = null): string;
77 
78 
82  public function cast(string $a_field_name, $a_dest_type): string;
83 }
groupConcat(string $a_field_name, string $a_seperator=",", string $a_order=null)
$type
quote($value, ?string $type=null)
Class ilPDOStatement is a Wrapper Class for PDOStatement.
cast(string $a_field_name, $a_dest_type)
createDatabase(string $name, string $charset="utf8", string $collation="")
concat(array $values, bool $allow_null=true)
if($format !==null) $name
Definition: metadata.php:247
createTable(string $name, array $fields, array $options=[])
in(string $field, array $values, bool $negate=false, string $type="")
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
free(ilPDOStatement $statement)
lock(array $tables)
like(string $column, string $type, string $value="?", bool $case_insensitive=true)
quoteIdentifier(string $identifier)
locate(string $a_needle, string $a_string, int $a_start_pos=1)