![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/laminas/laminas-db/src/Metadata/ |
<?php namespace Laminas\Db\Metadata; interface MetadataInterface { /** * Get schemas. * * @return string[] */ public function getSchemas(); /** * Get table names. * * @param null|string $schema * @param bool $includeViews * @return string[] */ public function getTableNames($schema = null, $includeViews = false); /** * Get tables. * * @param null|string $schema * @param bool $includeViews * @return Object\TableObject[] */ public function getTables($schema = null, $includeViews = false); /** * Get table * * @param string $tableName * @param null|string $schema * @return Object\TableObject */ public function getTable($tableName, $schema = null); /** * Get view names * * @param null|string $schema * @return string[] */ public function getViewNames($schema = null); /** * Get views * * @param null|string $schema * @return Object\ViewObject[] */ public function getViews($schema = null); /** * Get view * * @param string $viewName * @param null|string $schema * @return Object\ViewObject */ public function getView($viewName, $schema = null); /** * Get column names * * @param string $table * @param null|string $schema * @return string[] */ public function getColumnNames($table, $schema = null); /** * Get columns * * @param string $table * @param null|string $schema * @return Object\ColumnObject[] */ public function getColumns($table, $schema = null); /** * Get column * * @param string $columnName * @param string $table * @param null|string $schema * @return Object\ColumnObject */ public function getColumn($columnName, $table, $schema = null); /** * Get constraints * * @param string $table * @param null|string $schema * @return Object\ConstraintObject[] */ public function getConstraints($table, $schema = null); /** * Get constraint * * @param string $constraintName * @param string $table * @param null|string $schema * @return Object\ConstraintObject */ public function getConstraint($constraintName, $table, $schema = null); /** * Get constraint keys * * @param string $constraint * @param string $table * @param null|string $schema * @return Object\ConstraintKeyObject[] */ public function getConstraintKeys($constraint, $table, $schema = null); /** * Get trigger names * * @param null|string $schema * @return string[] */ public function getTriggerNames($schema = null); /** * Get triggers * * @param null|string $schema * @return Object\TriggerObject[] */ public function getTriggers($schema = null); /** * Get trigger * * @param string $triggerName * @param null|string $schema * @return Object\TriggerObject */ public function getTrigger($triggerName, $schema = null); }