[Modeling-cvs] ProjectModeling/Modeling/DatabaseAdaptors/PostgresqlAdaptorLayer __init__.py,1.3,1.4
Status: Abandoned
Brought to you by:
sbigaret
From: <sbi...@us...> - 2003-08-25 00:57:22
|
Update of /cvsroot/modeling/ProjectModeling/Modeling/DatabaseAdaptors/PostgresqlAdaptorLayer In directory sc8-pr-cvs1:/tmp/cvs-serv8310/Modeling/DatabaseAdaptors/PostgresqlAdaptorLayer 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/PostgresqlAdaptorLayer/__init__.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** __init__.py 3 Aug 2003 11:10:50 -0000 1.3 --- __init__.py 24 Aug 2003 14:15:13 -0000 1.4 *************** *** 50,53 **** --- 50,62 ---- 'user', 'password' -- user credentials + Supported SQL datatypes are: + + VARCHAR, CHAR, TEXT, + FLOAT, INT, INTEGER, NUMERIC, + DATE, TIME, DATETIME, TIMESTAMP, TIMESTAMP WITHOUT TIME ZONE, + TIMESTAMP WITH TIME ZONE + + Note: postgresql v7.3+ does not support DATETIME anymore. + """ |