| Package | Description |
|---|---|
| org.brains2b.sql | |
| org.brains2b.sql.meta |
| Modifier and Type | Method and Description |
|---|---|
SQLRecord |
SQLRecord.cloneDefinition()
clone the definition of this record, but not
the values set for any of the columns
|
static SQLRecord |
SQLRecord.createEmptyRecord(java.sql.ResultSetMetaData meta)
automatically create a new SQLRecord structure from ResultSetMeta
|
static SQLRecord |
SQLRecord.createRecord(java.sql.ResultSet rs)
automatically create a new SQLRecord from a ResultSet
|
| Modifier and Type | Method and Description |
|---|---|
SQLRecord |
TableModel.getRecord()
the record which defines all the values for the model
|
SQLRecord |
ConstraintModel.getRecord()
the record which defines all the values for the model
|
SQLRecord |
ProcedureModel.getRecord()
the record which defines all the values for the model
|
SQLRecord |
TypeModel.getRecord() |
SQLRecord |
ParameterModel.getRecord()
the record which defines all the values for the model
|
SQLRecord |
IndexModel.getRecord()
the record which defines all the values for the model
|
SQLRecord |
ColumnModel.getRecord()
the record which defines all the values for the model
|
SQLRecord |
SQLMetaModel.getRecord()
the record which defines all the values for the model
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
TableModel.setRecord(SQLRecord record)
set the record for this Model
|
protected void |
ConstraintModel.setRecord(SQLRecord record)
set the record for this Model
|
protected void |
IndexModel.setRecord(SQLRecord record)
set the record for this Model
|
protected void |
ColumnModel.setRecord(SQLRecord record)
set the record for this Model
|
| Constructor and Description |
|---|
ColumnModel(SQLRecord record)
Create a ColumnModel on the basis of this SQLRecord
|
ConstraintModel(java.lang.String type,
SQLRecord record)
Create a ConstriantModel of this specific type
on the basis of the provided SQLRecord
|
IndexModel(SQLRecord record)
Create an IndexModel on the basis of this SQLRecord
|
ParameterModel(SQLRecord record)
Create an ParameterModel on the basis of this SQLRecord
|
ProcedureModel(SQLRecord record)
Create a ProcedureModel on the basis of this SQLRecord
|
TableModel(SQLRecord record)
Create a TableModel on the basis of this SQLRecord
|
TypeModel(SQLRecord record) |