public Schema::getComment($table, $column = NULL)
Retrieve a table or column comment.
File
- core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php, line 826
Class
- Schema
- PostgreSQL implementation of \Drupal\Core\Database\Schema.
Namespace
Drupal\Core\Database\Driver\pgsql
Code
1 2 3 4 5 6 7 8 9 10 | public function getComment( $table , $column = NULL) { $info = $this ->getPrefixInfo( $table ); // Don't use {} around pg_class, pg_attribute tables. if (isset( $column )) { return $this ->connection->query( 'SELECT col_description(oid, attnum) FROM pg_class, pg_attribute WHERE attrelid = oid AND relname = ? AND attname = ?' , array ( $info [ 'table' ], $column ))->fetchField(); } else { return $this ->connection->query( 'SELECT obj_description(oid, ?) FROM pg_class WHERE relname = ?' , array ( 'pg_class' , $info [ 'table' ]))->fetchField(); } } |
Please login to continue.