public class CompanyText extends DBRow
@DBTableName annotation allows the class to be renamed to fit better within a Java library while preserving the actual database name.
Support DBvolution at Patreon
| Modifier and Type | Field and Description |
|---|---|
DBInteger |
carCompany
A DBInteger field representing the "car_company_fk" column in the database.
|
DBLargeText |
text
A DBLargeText field representing the "text_file" column in the database.
|
DBString |
textFilename
A DBString field representing the "text_name" column in the database.
|
DBInteger |
textID
A DBInteger field representing the "logo_id" column in the database.
|
| Constructor and Description |
|---|
CompanyText() |
addReturnFields, copyDBRow, getAllConnectedBaseTables, getAllConnectedTables, getDBRow, getDBRowSubclassesFromPackage, getDefined, getDistinctValuesOfColumn, getForeignKeyExpressionsTo, getForeignKeyPropertyWrappers, getForeignKeysTo, getIgnoredForeignKeys, getLargeObjects, getPrimaryKeyColumnNames, getPrimaryKeyExample, getPrimaryKeyFieldName, getPrimaryKeyIndexes, getPrimaryKeyPropertyWrappers, getPrimaryKeys, getPrimaryKeysAsArray, getRecursiveTableAlias, getReferencedBaseTables, getReferencedTables, getRelatedBaseTables, getRelatedInstancesFromQuery, getRelatedTables, getRelationshipsAsBooleanExpressions, getSchemaName, getSelectedProperties, getSelectQuery, getTableName, getWhereClauseExpressions, getWhereClausesWithAliases, getWhereClausesWithoutAliases, hasChangedSimpleTypes, hasConditionsSet, hasLargeObjects, ignoreAllForeignKeys, ignoreAllForeignKeysExcept, ignoreAllForeignKeysExceptFKsTo, ignoreForeignKey, ignoreForeignKey, ignoreForeignKeyColumns, ignoreForeignKeyProperties, ignoreForeignKeys, ignoreForeignKeys, isEmptyRow, isRequiredTable, removeAllFieldsFromResults, returnAllFields, setDefined, setEmptyRow, setPrimaryKey, setRecursiveTableAlias, setReturnFields, setReturnFieldsBasedOn, setReturnFieldsToNone, setSimpleTypesToUnchanged, setUndefined, toStringMinusFKs, useAllForeignKeys, willBeConnectedTo, willCreateBlankQuerycolumn, column, column, column, column, column, column, column, column, column, column, column, column, column, column, column, column, column, column, column, column, column, column, column, column, column, column, column, column, column, column, column, column, column, column, column, column, column, column, column, getAutoFillingPropertyWrappers, getColumnPropertyWrapperDefinitions, getColumnPropertyWrappers, getDBExpression, getFieldNames, getFieldValues, getPropertyWrapperOf, getReturnColumns, getWrapper, setReturnColumns, toStringpublic DBInteger textID
@DBPrimaryKey both indicates that the field is the primary key of the table and should be used to connect other related tables to this table.
@DBColumn both indicates that the field is part of the database table and protects the actual database column name from any refactoring.
DBInteger indicates that the field is INTEGER or NUMBER field that naturally provides Integer values in Java. It has an instance as that just makes everyone's life easier.
public DBInteger carCompany
@DBColumn both indicates that the field is part of the database table and protects the actual database column name from any refactoring.
@DBForeignKey indicates that this field is a reference to the primary key of the table represented by CarCompany.
DBInteger indicates that the field is INTEGER or NUMBER field that naturally provides an Integer value in Java. It has an instance as that just makes everyone's life easier.
public DBLargeText text
@DBColumn both indicates that the field is part of the database table and protects the actual database column name from any refactoring.
DBByteArray indicates that the field is CLOB or TEXT field that naturally provides a byte[] value in Java. It has an instance as that just makes everyone's life easier.
public DBString textFilename
@DBColumn both indicates that the field is part of the database table and protects the actual database column name from any refactoring.
DBInteger indicates that the field is CHAR or VARCHAR field that naturally provides String values in Java. It has an instance as that just makes everyone's life easier.
Copyright © 2017. All Rights Reserved.