dlr 01/07/23 11:23:35 Modified: src/templates/sql/base/oracle db.props Log: Patch by Stephane Bailliez <[EMAIL PROTECTED]> to map the JDBC CHAR datatype to Oracle CHAR (instead of VARCHAR2). Patch supported by http://technet.oracle.com/doc/oracle8i_816/java.816/a81354/basic3.htm (link now included in document). Revision Changes Path 1.2 +3 -2 jakarta-turbine-torque/src/templates/sql/base/oracle/db.props Index: db.props =================================================================== RCS file: /home/cvs/jakarta-turbine-torque/src/templates/sql/base/oracle/db.props,v retrieving revision 1.1 retrieving revision 1.2 diff -u -u -r1.1 -r1.2 --- db.props 2001/07/18 12:54:19 1.1 +++ db.props 2001/07/23 18:23:35 1.2 @@ -1,7 +1,8 @@ # Taken from java.sql.Types in the IBM 1.3 JDK # JDBC to Oracle mappings. # -# A good Oracle resource for determining these mappings is at +# Good Oracle resources for determining these mappings include: +# http://technet.oracle.com/doc/oracle8i_816/java.816/a81354/basic3.htm # http://technet.oracle.com/docs/tech/migration/workbench/doc_library/MSAccess/ch3.htm BIT = NUMBER (1, 0) @@ -14,7 +15,7 @@ DOUBLE = FLOAT NUMERIC = NUMBER DECIMAL = NUMBER -CHAR = VARCHAR2 +CHAR = CHAR VARCHAR = VARCHAR2 LONGVARCHAR = VARCHAR2 (2000) DATE = DATE --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
