Class OracleDBTypeFactory

  • All Implemented Interfaces:
    DBTypeFactory, SQLDBTypeFactory

    public class OracleDBTypeFactory
    extends DefaultSQLDBTypeFactory
    Remarks: - NUMBER is used both for integers and decimals - Oracle does not have a proper boolean type... A common practice is to use NUMBER(1) Assumption: the default character set of VARCHAR2 on the Oracle instance is expected to contain all the possible characters that can be encountered by the application. NB: on modern instances, it is usually UTF-8, which is safe.