Update of /cvsroot/modeling/ProjectModeling/Modeling/DatabaseAdaptors/OracleAdaptorLayer
In directory sc8-pr-cvs1:/tmp/cvs-serv8310/Modeling/DatabaseAdaptors/OracleAdaptorLayer
Modified Files:
__init__.py
Log Message:
Added the list of supported SQL datatypes in __init__ docstring
Index: __init__.py
===================================================================
RCS file: /cvsroot/modeling/ProjectModeling/Modeling/DatabaseAdaptors/OracleAdaptorLayer/__init__.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** __init__.py 19 Aug 2003 22:03:34 -0000 1.1
--- __init__.py 24 Aug 2003 14:15:13 -0000 1.2
***************
*** 37,49 ****
! Supported datatypes are:
! char, varchar, varchar2, nchar, nvarchar2
! number, decimal, int, integer, smallint, float, numeric, real,
! date, time
with the additional datatypes for 9i:
! timestamp, timestamp with time zone, timestamp with local time zone
"""
--- 37,49 ----
! Supported SQL datatypes are:
! CHAR, VARCHAR, VARCHAR2, NCHAR, NVARCHAR2
! NUMBER, DECIMAL, INT, INTEGER, SMALLINT, FLOAT, NUMERIC, REAL,
! DATE, TIME
with the additional datatypes for 9i:
! TIMESTAMP, TIMESTAMP WITH TIME ZONE, TIMESTAMP WITH LOCAL TIME ZONE
"""
|