19 declare(strict_types=1);
53 $ilDB = $DIC->database();
54 $ilDBInterface =
$ilDB;
59 $this->il_db = $ilDBInterface;
60 $this->allowed_attributes = $ilDBInterface->getAllowedAttributes();
69 public function getFieldInformation(
string $a_table,
bool $a_remove_not_allowed_attributes =
false): array
71 $fields = $this->manager->listTableFields($a_table);
73 foreach ($fields as $field) {
74 $rdef = $this->reverse->getTableFieldDefinition($a_table, $field);
76 if (isset($rdef[
"mdb2type"], $rdef[
"type"]) && $rdef[
"type"] !== $rdef[
"mdb2type"]) {
77 throw new ilDatabaseException(
"ilDBAnalyzer::getFielInformation: Found type != mdb2type: $a_table, $field");
85 foreach (array_keys($rdef) as $k) {
86 if ($k !== $best_alt) {
87 $alt_types .= ($rdef[$k][
"type"] ??
"") . ($rdef[$k][
"length"] ??
"") .
" ";
92 "notnull" => $rdef[$best_alt][
"notnull"] ??
null,
93 "nativetype" => $rdef[$best_alt][
"nativetype"] ??
null,
94 "length" => $rdef[$best_alt][
"length"] ??
null,
95 "unsigned" => $rdef[$best_alt][
"unsigned"] ??
null,
96 "default" => $rdef[$best_alt][
"default"] ??
null,
97 "fixed" => $rdef[$best_alt][
"fixed"] ??
null,
98 "autoincrement" => $rdef[$best_alt][
"autoincrement"] ??
null,
99 "type" => $rdef[$best_alt][
"type"] ??
null,
100 "alt_types" => $alt_types,
103 if ($a_remove_not_allowed_attributes) {
104 foreach (array_keys($inf[$field]) as $k) {
105 if ($k !==
"type" && !in_array($k, $this->allowed_attributes[$inf[$field][
"type"]])) {
106 unset($inf[$field][$k]);
137 foreach ($a_def as $k => $rd) {
138 if ($car[$rd[
"type"]] > $cur_car) {
139 $cur_car = $car[$rd[
"type"]];
156 $fields = $this->manager->listTableFields($a_table);
158 foreach ($fields as $field) {
159 $rdef = $this->reverse->getTableFieldDefinition($a_table, $field);
160 if ($rdef[0][
"autoincrement"]) {
176 $constraints = $this->manager->listTableConstraints($a_table);
179 foreach ($constraints as
$c) {
180 $info = $this->reverse->getTableConstraintDefinition($a_table, $c);
182 if ($info[
"primary"]) {
184 foreach ($info[
"fields"] as $k =>
$f) {
185 $pk[
"fields"][$k] = [
186 "position" =>
$f[
"position"],
187 "sorting" =>
$f[
"sorting"],
207 $indexes = $this->manager->listTableIndexes($a_table);
212 $set = $this->il_db->query(
"SHOW INDEX FROM " . $a_table);
213 while ($rec = $this->il_db->fetchAssoc($set)) {
214 if (!empty($rec[
"Key_name"])) {
215 $mysql_info[$rec[
"Key_name"]] = $rec;
217 $mysql_info[$rec[
"key_name"]] = $rec;
223 foreach ($indexes as
$c) {
224 $info = $this->reverse->getTableIndexDefinition($a_table, $c);
227 if (!$info[
"primary"]) {
229 $i[
"fulltext"] =
false;
231 if ($mysql_info[$i[
"name"]][
"Index_type"] ===
"FULLTEXT" 232 || $mysql_info[$i[
"name"] .
"_idx"][
"Index_type"] ===
"FULLTEXT" 233 || $mysql_info[$i[
"name"]][
"index_type"] ===
"FULLTEXT" 234 || $mysql_info[$i[
"name"] .
"_idx"][
"index_type"] ===
"FULLTEXT" 236 $i[
"fulltext"] =
true;
238 foreach ($info[
"fields"] as $k =>
$f) {
240 "position" =>
$f[
"position"],
241 "sorting" =>
$f[
"sorting"],
261 $constraints = $this->manager->listTableConstraints($a_table);
264 foreach ($constraints as
$c) {
265 $info = $this->reverse->getTableConstraintDefinition($a_table, $c);
267 if ($info[
"unique"] ??
null) {
269 $i[
"type"] =
"unique";
270 foreach ($info[
"fields"] as $k =>
$f) {
272 "position" =>
$f[
"position"],
273 "sorting" =>
$f[
"sorting"],
294 $seq = $this->manager->listSequences();
295 if (is_array($seq) && in_array($a_table, $seq)) {
298 if (isset($pk[
'fields']) && is_array($pk[
"fields"]) && count($pk[
"fields"]) === 1) {
299 $seq_field = key($pk[
"fields"]);
301 throw new ilDatabaseException(
"ilDBAnalyzer::hasSequence: Error, sequence defined, but no one-field primary key given. Table: " 305 $set = $this->il_db->query(
"SELECT MAX(" . $this->il_db->quoteIdentifier($seq_field) .
") ma FROM " . $this->il_db->quoteIdentifier($a_table));
306 $rec = $this->il_db->fetchAssoc($set);
308 return $rec[
"ma"] + 1;
getFieldInformation(string $a_table, bool $a_remove_not_allowed_attributes=false)
Get field information of a table.
__construct(?ilDBInterface $ilDBInterface=null)
ilDBAnalyzer constructor.
array $allowed_attributes
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
hasSequence(string $a_table)
Check whether sequence is defined for current table (only works on "abstraced" tables) ...
getBestDefinitionAlternative(array $a_def)
getConstraintsInformation(string $a_table, bool $a_abstract_table=false)
Get information on constraints of a table.
getAutoIncrementField(string $a_table)
Gets the auto increment field of a table.
This class gives all kind of DB information using the database manager and reverse module...
getPrimaryKeyInformation(string $a_table)
Get primary key of a table.
getIndicesInformation(string $a_table, bool $a_abstract_table=false)
Get information on indices of a table.