Package simpleorm.dataset
Class SFieldLong
java.lang.Object
simpleorm.dataset.SFieldMeta
simpleorm.dataset.SFieldScalar
simpleorm.dataset.SFieldLong
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
IdentityField,LongField
Represents Long field meta data. Default SQL type is NUMERIC(18,0), which is
roughly sql-92.
- See Also:
-
Field Summary
Fields inherited from class simpleorm.dataset.SFieldScalar
sqlDataTypeOverride, theGeneratorFields inherited from class simpleorm.dataset.SFieldMeta
quoteName -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected ObjectConverts the parameter from the raw type parameter to the correct internal Object type that is stored in the data set.Specializes SFieldMeta.booleanisFKeyCompatible(SFieldScalar field) intqueryFieldValue(ResultSet rs, int sqlIndex) Issues a JDBC get*() on the result set for the field and converts the database type to the appropriate internal type, eg, Double for a double field.Methods inherited from class simpleorm.dataset.SFieldScalar
getColumnName, getGeneratorMode, getGeneratorParameter, getMaxSize, getReferences, getTheGenerator, isForeignKey, isGenerated, isMandatory, isNotOptimisticLocked, isPrimary, overrideSqlDataType, setGeneratorMode, setMaxSize, setTheGenerator, toLongerStringMethods inherited from class simpleorm.dataset.SFieldMeta
addFlag, addValidator, doValidate, equals, getFieldName, getFlags, getRecordMeta, getUserProperties, getUserProperty, getValidators, hashCode, isDescriptive, isUnqueried, nextGeneratedValue, putUserProperty, readResolve, setQuoted, toString, writeFieldValue, writeFieldValue
-
Constructor Details
-
SFieldLong
-
-
Method Details
-
queryFieldValue
Description copied from class:SFieldMetaIssues a JDBC get*() on the result set for the field and converts the database type to the appropriate internal type, eg, Double for a double field. The first column has sqlIndex==1.- Specified by:
queryFieldValuein classSFieldMeta- Throws:
Exception
-
convertToDataSetFieldType
Description copied from class:SFieldMetaConverts the parameter from the raw type parameter to the correct internal Object type that is stored in the data set. Returns the object if no conversion necessary. Used bySRecordInstance.setObjectetc., Not getObject.- Specified by:
convertToDataSetFieldTypein classSFieldMeta- Throws:
Exception
-
defaultSqlDataType
Specializes SFieldMeta. This is basically SQL 2, and fairly database independent, we hope. Note that "LONG" for Oracle means a text field that can contain over 2K characters!- Specified by:
defaultSqlDataTypein classSFieldScalar
-
isFKeyCompatible
-
javaSqlType
public int javaSqlType()- Specified by:
javaSqlTypein classSFieldScalar- Returns:
- int constant from java.sql.Types, used for setting sql datatype with null values
-