| Package | Description |
|---|---|
| org.bridje.sql | |
| org.bridje.sql.dialects | |
| org.bridje.sql.impl |
| Modifier and Type | Method and Description |
|---|---|
Table |
BuildTableFKsStep.build() |
Table |
ForeignKey.getReferences() |
Table |
Index.getTable() |
Table |
ForeignKey.getTable() |
Table |
Column.getTable() |
Table[] |
Schema.getTables() |
| Modifier and Type | Method and Description |
|---|---|
static BuildForeignKeyStep |
SQL.buildForeignKey(String name,
Table table,
Column<?,?>... columns) |
static BuildForeignKeyStep |
SQL.buildForeignKey(Table table,
Column<?,?>... columns) |
static Index |
SQL.buildIndex(String name,
Table table,
Column<?,?>... columns) |
static Index |
SQL.buildIndex(Table table,
Column<?,?>... columns) |
static Index |
SQL.buildUnique(String name,
Table table,
Column<?,?>... columns) |
static Index |
SQL.buildUnique(Table table,
Column<?,?>... columns) |
String |
SQLDialect.createTable(Table table,
List<Object> params) |
static DeleteStep |
SQL.delete(Table... tables) |
static InsertIntoStep |
SQL.insertInto(Table table) |
BuildFkReferencesStep |
BuildForeignKeyStep.references(Table table)
Especify the references table for the foreign key.
|
BuildSchemaStep |
BuildSchemaStep.table(Table table)
Adds a table to the schema.
|
static UpdateStep |
SQL.update(Table table) |
| Modifier and Type | Method and Description |
|---|---|
void |
MySQLDialect.alterTable(StringBuilder builder,
Table table) |
void |
DerbyDialect.alterTable(StringBuilder builder,
Table table) |
void |
MySQLDialect.createIndex(StringBuilder builder,
String name,
Table table,
Column<?,?>[] columns,
boolean unique) |
void |
DerbyDialect.createIndex(StringBuilder builder,
String name,
Table table,
Column<?,?>[] columns,
boolean unique) |
void |
MySQLDialect.createTable(StringBuilder builder,
Table table) |
void |
DerbyDialect.createTable(StringBuilder builder,
Table table) |
String |
MySQLDialect.createTable(Table table,
List<Object> params) |
String |
DerbyDialect.createTable(Table table,
List<Object> params) |
void |
MySQLDialect.createUniqueIndex(StringBuilder builder,
String name,
Table table,
Column<?,?>[] columns) |
void |
DerbyDialect.createUniqueIndex(StringBuilder builder,
String name,
Table table,
Column<?,?>[] columns) |
void |
MySQLDialect.dropIndex(StringBuilder builder,
String name,
Table table) |
void |
DerbyDialect.dropIndex(StringBuilder builder,
String name,
Table table) |
| Modifier and Type | Method and Description |
|---|---|
BuildForeignKeyStep |
SQLFactory.buildForeignKey(String name,
Table table,
Column<?,?>[] columns) |
BuildForeignKeyStep |
SQLFactory.buildForeignKey(Table table,
Column<?,?>[] columns) |
Index |
SQLFactory.buildIndex(String name,
Table table,
Column<?,?>[] columns) |
Index |
SQLFactory.buildIndex(Table table,
Column<?,?>... columns) |
Index |
SQLFactory.buildUnique(String name,
Table table,
Column<?,?>... columns) |
Index |
SQLFactory.buildUnique(Table table,
Column<?,?>... columns) |
DeleteStep |
SQLFactory.delete(Table... tables) |
InsertIntoStep |
SQLFactory.insertInto(Table table) |
UpdateStep |
SQLFactory.update(Table table) |
Copyright © 2015–2017 Bridje Framework. All rights reserved.