Class SFieldObject

All Implemented Interfaces:
Serializable

public class SFieldObject extends SFieldScalar
Represents columns that are not objects known to SimpleORM. No conversions are done, so this provides a direct gateway to java.sql.RecordSet.getObject. Useful for database specific data types such as PostgreSQL's GIS types, and also for the new SQL array and object types.

## Should add the JDBC object mapping property, but normally the default map is OK.

See Also:
  • Constructor Details

  • Method Details

    • queryFieldValue

      public Object queryFieldValue(ResultSet rs, int sqlIndex) throws Exception
      Specidalizes abstract method to actually query a column from a result set.
      Specified by:
      queryFieldValue in class SFieldMeta
      Throws:
      Exception
    • convertToDataSetFieldType

      protected Object convertToDataSetFieldType(Object raw) throws Exception
      Description copied from class: SFieldMeta
      Converts 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 by SRecordInstance.setObject etc., Not getObject.
      Specified by:
      convertToDataSetFieldType in class SFieldMeta
      Throws:
      Exception
    • defaultSqlDataType

      public String defaultSqlDataType()
      Description copied from class: SFieldScalar
      The default data type if not overriden by overrideSqlDataType. This is only called when the data type is actually needed by CREATE TABLE, ie if no sqlDataTypeOverride is specified.
      Specified by:
      defaultSqlDataType in class SFieldScalar
    • isFKeyCompatible

      public boolean isFKeyCompatible(SFieldScalar field)
    • javaSqlType

      public int javaSqlType()
      Specified by:
      javaSqlType in class SFieldScalar
      Returns:
      int constant from java.sql.Types, used for setting sql datatype with null values