Prado\Data\Common\Oracle\TOracleMetaData::createNewTableInfo PHP Method

createNewTableInfo() protected method

protected createNewTableInfo ( $schemaName, $tableName ) : TOracleTableInfo
return TOracleTableInfo
    protected function createNewTableInfo($schemaName, $tableName)
    {
        $info['SchemaName'] = $this->assertIdentifier($schemaName);
        $info['TableName'] = $this->assertIdentifier($tableName);
        $info['IsView'] = false;
        if ($this->getIsView($schemaName, $tableName)) {
            $info['IsView'] = true;
        }
        list($primary, $foreign) = $this->getConstraintKeys($schemaName, $tableName);
        $class = $this->getTableInfoClass();
        return new $class($info, $primary, $foreign);
    }