15 protected $port = self::POSTGRE_STD_PORT;
29 $this->
setPort(self::POSTGRE_STD_PORT);
31 $this->dsn =
'pgsql:host=' . $this->
getHost() .
';port=' . $this->
getPort() .
';dbname=' . $this->
getDbname() .
';user=' 41 public function connect($return_false_for_error =
false)
48 $this->error_code = $e->getCode();
49 if ($return_false_for_error) {
55 return ($this->pdo->errorCode() == PDO::ERR_NONE);
62 PDO::ATTR_EMULATE_PREPARES =>
true,
109 $a_constraint = str_replace($a_table .
'_',
'', $a_constraint);
111 return $a_table .
'_' . $a_constraint;
121 return parent::getIndexName($index_name_base);
132 public function replace($a_table, $a_pk_columns, $a_other_columns)
134 $a_columns = array_merge($a_pk_columns, $a_other_columns);
136 $field_values = array();
137 $placeholders = array();
142 $val_field = array();
145 foreach ($a_columns as $k => $col) {
146 if ($col[0] ==
'clob' or $col[0] ==
'blob') {
147 $val_field[] = $this->
quote($col[1],
'text') .
" " . $k;
149 $val_field[] = $this->
quote($col[1], $col[0]) .
" " . $k;
152 $placeholders[] =
"%s";
153 $placeholders2[] =
":$k";
156 $field_values[$k] = $col[1];
157 if ($col[0] ==
"blob" || $col[0] ==
"clob") {
167 foreach ($a_pk_columns as $k => $col) {
168 $abpk[] =
"a." . $k .
" = b." . $k;
169 $delwhere[] = $k .
" = " . $this->
quote($col[1], $col[0]);
171 foreach ($a_other_columns as $k => $col) {
172 $aboc[] =
"a." . $k .
" = b." . $k;
176 $this->
manipulate(
"DELETE FROM " . $a_table .
" WHERE " . implode(
" AND ", $delwhere));
177 $this->
insert($a_table, $a_columns);
193 foreach ($a_tables as $table) {
194 if (!isset($table[
'sequence']) && $table[
'sequence']) {
195 $lock =
'LOCK TABLE ' . $table[
'name'];
197 switch ($table[
'type']) {
199 $lock .=
' IN SHARE MODE ';
203 $lock .=
' IN EXCLUSIVE MODE ';
213 foreach ($locks as $lock) {
253 $sequence_name = $table_name .
'_seq';
254 $query =
"SELECT NEXTVAL('$sequence_name')";
258 return $data->nextval;
267 public function dropTable($table_name, $error_if_not_existing =
false)
270 $this->pdo->exec(
"DROP TABLE $table_name");
271 }
catch (PDOException $PDOException) {
272 if ($error_if_not_existing) {
290 return '"' . $identifier .
'"';
302 if (is_array($tables)) {
303 if (in_array($table_name, $tables)) {
318 if ($this->limit !== null && $this->offset !== null) {
321 $this->offset = null;
338 return in_array($column_name, $this->manager->listTableFields($table_name));
361 $this->manager->alterTable($a_name, [
"name" => $a_new_name ],
false);
380 if (in_array($table_name, $this->manager->listSequences())) {
384 parent::createSequence($table_name, $start);
399 public function createTable($table_name, $fields, $drop_table =
false, $ignore_erros =
false)
405 return parent::createTable($table_name, $fields, $drop_table, $ignore_erros);
420 if ($ilDBAnalyzer->getPrimaryKeyInformation($table_name)) {
424 return parent::addPrimaryKey($table_name, $primary_keys);
431 public function addIndex($table_name, $fields, $index_name =
'', $fulltext =
false)
433 $indices = $this->manager->listTableIndexes($table_name);
434 if (in_array($this->
constraintName($table_name, $index_name), $indices)) {
438 return parent::addIndex($table_name, $fields, $index_name, $fulltext);
448 return parent::addUniqueConstraint($table, $fields,
$name);
460 return $this->manager->dropConstraint($table_name,
"pk",
true);
createTable($table_name, $fields, $drop_table=false, $ignore_erros=false)
dropTable($table_name, $error_if_not_existing=false)
getSequenceName($table_name)
renameTable($a_name, $a_new_name)
Class ilDBPdoPostgresFieldDefinition.
sequenceExists($sequence)
quote($value, $type=null)
getPrimaryKeyIdentifier()
Primary key identifier.
setStorageEngine($storage_engine)
Class ilDatabaseException.
replace($a_table, $a_pk_columns, $a_other_columns)
constraintName($a_table, $a_constraint)
quoteIdentifier($identifier, $check_option=false)
tableColumnExists($table_name, $column_name)
dropPrimaryKey($table_name)
addPrimaryKey($table_name, $primary_keys)
addIndex($table_name, $fields, $index_name='', $fulltext=false)
createSequence($table_name, $start=1)
getIndexName($index_name_base)
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
getAdditionalAttributes()
insert($table_name, $values)
addUniqueConstraint($table, $fields, $name="con")
This class gives all kind of DB information using the database manager and reverse module...
connect($return_false_for_error=false)