Pular para o conteúdo principal

CheckExists

Verifica se sequências, tabelas, colunas e indexes existem na base de dados.

if (!_db.checkExists().table("client")) {
_db.table().create(
"client",
_db.column().setName("id").setType("int").setPrimaryKey(true),
_db.column().setName("name").setType("varchar").setNotNull(true).setDefault()
);
}

column


column(table: string, column: string) : boolean

Atributos
NOMETIPODESCRIÇÃO
tablestring
columnstring
Retorno

( boolean )


getKey


getKey() : string

Retorno

( string )


index


index(index: string) : boolean

Atributos
NOMETIPODESCRIÇÃO
indexstring
Retorno

( boolean )


index(tableName: string, columnName: string) : boolean

Atributos
NOMETIPODESCRIÇÃO
tableNamestring
columnNamestring
Retorno

( boolean )


isH2


isH2() : boolean

Retorno

( boolean )


isH2(builder: org.netuno.tritao.db.Builder) : boolean

Atributos
NOMETIPODESCRIÇÃO
builderorg.netuno.tritao.db.Builder
Retorno

( boolean )


isMSSQL


isMSSQL() : boolean

Retorno

( boolean )


isMSSQL(builder: org.netuno.tritao.db.Builder) : boolean

Atributos
NOMETIPODESCRIÇÃO
builderorg.netuno.tritao.db.Builder
Retorno

( boolean )


isMariaDB


isMariaDB() : boolean

Retorno

( boolean )


isMariaDB(builder: org.netuno.tritao.db.Builder) : boolean

Atributos
NOMETIPODESCRIÇÃO
builderorg.netuno.tritao.db.Builder
Retorno

( boolean )


isPostgreSQL


isPostgreSQL() : boolean

Retorno

( boolean )


isPostgreSQL(builder: org.netuno.tritao.db.Builder) : boolean

Atributos
NOMETIPODESCRIÇÃO
builderorg.netuno.tritao.db.Builder
Retorno

( boolean )


sequence


sequence() : boolean

Retorno

( boolean )


sequence(name: string) : boolean

Atributos
NOMETIPODESCRIÇÃO
namestring
Retorno

( boolean )


sequence(tableName: string, columnName: string) : boolean

Atributos
NOMETIPODESCRIÇÃO
tableNamestring
columnNamestring
Retorno

( boolean )


table


table(table: string) : boolean

Atributos
NOMETIPODESCRIÇÃO
tablestring
Retorno

( boolean )