Index
Realiza a manipulação de indexes em base de dados.
if (!_db.checkExists().index("client", "name")) {
_db.index().create(
"client", // Nome da Tabela
"name" // Nome da Coluna
); // O index client_name_idx será criado criado.
}
create
create(table: string, column: string) : Index
Atributos
NOME | TIPO | DESCRIÇÃO |
---|---|---|
table | string | |
column | string |
Retorno
( Index )
getKey
getKey() : string
Retorno
( string )
isH2
isH2() : boolean
Retorno
( boolean )
isH2(builder: org.netuno.tritao.db.Builder) : boolean
Atributos
NOME | TIPO | DESCRIÇÃO |
---|---|---|
builder | org.netuno.tritao.db.Builder |
Retorno
( boolean )
isMSSQL
isMSSQL() : boolean
Retorno
( boolean )
isMSSQL(builder: org.netuno.tritao.db.Builder) : boolean
Atributos
NOME | TIPO | DESCRIÇÃO |
---|---|---|
builder | org.netuno.tritao.db.Builder |
Retorno
( boolean )
isMariaDB
isMariaDB() : boolean
Retorno
( boolean )
isMariaDB(builder: org.netuno.tritao.db.Builder) : boolean
Atributos
NOME | TIPO | DESCRIÇÃO |
---|---|---|
builder | org.netuno.tritao.db.Builder |
Retorno
( boolean )
isPostgreSQL
isPostgreSQL() : boolean
Retorno
( boolean )
isPostgreSQL(builder: org.netuno.tritao.db.Builder) : boolean
Atributos
NOME | TIPO | DESCRIÇÃO |
---|---|---|
builder | org.netuno.tritao.db.Builder |
Retorno
( boolean )
sequence
sequence() : boolean
Retorno
( boolean )