Package nz.co.gregs.dbvolution.annotations
Annotations To Store Database Semantics In Java.
These annotations help collect the semantic information known about the database.
I've been writing SQL for 20 years and DBV is easier, I hope you like it.
Gregory Graham
-
Annotation Types Summary Annotation Type Description AutoFillDuringQueryIfPossible Designates a DBRow derived field that should be connected to related objects during query execution.DBAdaptType Adapts a non-DBvolution field or property to a DBvolution type, or adapts a DBvolution field or property to a different DBvolution type.DBAutoIncrement Used to indicate that this field is an auto-incrementing column in the database.DBColumn Used to indicate that this field is associated with a database column and the name of that column.DBForeignKey Indicates that this field is a Foreign Key to another database table and specifies the table.DBPrimaryKey DBPrimaryKey indicates that the field is the primary key for the table.DBRequiredTable DBRequiredTable instructs the database to create this table if necessary.DBSelectQuery Used to indicate the class references a SQL query rather than a table or view and the query itself.DBTableName DBTableName
indicates the name of the database table that thisDBRow
implementation refers to.DBUnknownJavaSQLType A Placeholder Used During DBRow Generation To Capture Unknown Types.