Package simpleorm.dataset
Class SFieldBigDecimal
- java.lang.Object
- 
- simpleorm.dataset.SFieldMeta
- 
- simpleorm.dataset.SFieldScalar
- 
- simpleorm.dataset.SFieldBigDecimal
 
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable
 
 public class SFieldBigDecimal extends SFieldScalar Represents BigDecimal field meta data. Default SQL type is NUMERIC(precission, scale), which is roughly sql-92.What is the best way to represent money ammounts exactly? Scaled longs are no good for direct end user queries on the database. Doubles tend to loose precission due to Java truncating instead of rounding -- things will not balance. And BigDecimals are inefficient and a real pain to use. Your choice. - See Also:
- Serialized Form
 
- 
- 
Field Summary- 
Fields inherited from class simpleorm.dataset.SFieldScalarsqlDataTypeOverride, theGenerator
 - 
Fields inherited from class simpleorm.dataset.SFieldMetaquoteName
 
- 
 - 
Constructor SummaryConstructors Constructor Description SFieldBigDecimal(SRecordMeta meta, java.lang.String columnName, int precission, int scale, SFieldFlags... pvals)Note that precission and scale parameters only affect how the tables are created.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.lang.ObjectconvertToDataSetFieldType(java.lang.Object raw)Converts the parameter from the raw type parameter to the correct internal Object type that is stored in the data set.java.lang.StringdefaultSqlDataType()This is basically SQL 2, and fairly database independent, we hope.intgetPrecision()intgetScale()booleanisFKeyCompatible(SFieldScalar field)intjavaSqlType()java.lang.ObjectqueryFieldValue(java.sql.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.SFieldScalargetColumnName, getGeneratorMode, getGeneratorParameter, getMaxSize, getReferences, getTheGenerator, isForeignKey, isGenerated, isMandatory, isNotOptimisticLocked, isPrimary, overrideSqlDataType, setGeneratorMode, setMaxSize, setTheGenerator, toLongerString
 - 
Methods inherited from class simpleorm.dataset.SFieldMetaaddFlag, addValidator, doValidate, equals, getFieldName, getFlags, getRecordMeta, getUserProperties, getUserProperty, getValidators, hashCode, isDescriptive, isUnqueried, nextGeneratedValue, putUserProperty, readResolve, setQuoted, toString, writeFieldValue, writeFieldValue
 
- 
 
- 
- 
- 
Constructor Detail- 
SFieldBigDecimalpublic SFieldBigDecimal(SRecordMeta meta, java.lang.String columnName, int precission, int scale, SFieldFlags... pvals) Note that precission and scale parameters only affect how the tables are created. The scale that is actually returned is up to JDBC. And then you are responsible for dealing with rounding issues.
 
- 
 - 
Method Detail- 
getPrecisionpublic int getPrecision() 
 - 
getScalepublic int getScale() 
 - 
queryFieldValuepublic java.lang.Object queryFieldValue(java.sql.ResultSet rs, int sqlIndex) throws java.lang.ExceptionDescription 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 class- SFieldMeta
- Throws:
- java.lang.Exception
 
 - 
convertToDataSetFieldTypeprotected java.lang.Object convertToDataSetFieldType(java.lang.Object raw) throws java.lang.ExceptionDescription 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 class- SFieldMeta
- Throws:
- java.lang.Exception
 
 - 
defaultSqlDataTypepublic java.lang.String defaultSqlDataType() This is basically SQL 2, and fairly database independent, we hope. Note that "BIGDECIMAL" for Oracle means a text field that can contain over 2K characters!- Specified by:
- defaultSqlDataTypein class- SFieldScalar
 
 - 
isFKeyCompatiblepublic boolean isFKeyCompatible(SFieldScalar field) 
 - 
javaSqlTypepublic int javaSqlType() - Specified by:
- javaSqlTypein class- SFieldScalar
- Returns:
- int constant from java.sql.Types, used for setting sql datatype with null values
 
 
- 
 
-