Schema

class Schema(var database: Database, var name: Identifier)
Companion
object
class Object
trait Matchable
class Any

Type members

Classlikes

class NameFilter(lowercase: Boolean)

Value members

Concrete methods

def addTable(table: Table): Schema
def cleanEmptyTables(): Unit
def createTable(tbname: String): Table
def filterSequences(includes: Seq[String], excludes: Seq[String]): Seq[Sequence]
def filterTables(includes: Seq[String], excludes: Seq[String]): Seq[Table]
def getOrCreateTable(tbname: String): Table
def getTable(tbname: String): Option[Table]

Using table literal (with or without schema) search table

Using table literal (with or without schema) search table

def hasQuotedIdentifier: Boolean
override
def toString: String
Definition Classes
Any

Concrete fields

var catalog: Option[Identifier]
val sequences: HashSet[Sequence]
val tables: HashMap[Identifier, Table]