Schema
data class Schema(name: String, val authorization: String? = null, val password: String? = null, val defaultTablespace: String? = null, val temporaryTablespace: String? = null, val quota: String? = null, val on: String? = null)
Represents a database schema.
Parameters
name
The schema name.
authorization
Specifies the name of the database-level principal that will own the schema.
password
Used only for Oracle schema.
defaultTablespace
Used only for Oracle schema.
temporaryTablespace
Used only for Oracle schema.
quota
Used only for Oracle schema.
on
Used only for Oracle schema.
Constructors
Properties
Functions
Link copied to clipboard
Returns the SQL statements that create this schema.
Link copied to clipboard
Returns the SQL statements that drop this schema, as well as all its objects if cascade is true
.
Link copied to clipboard
Returns the SQL statements that set this schema as the current schema.