Update of /cvsroot/modeling/ProjectModeling/Modeling/DatabaseAdaptors/SQLiteAdaptorLayer
In directory sc8-pr-cvs1:/tmp/cvs-serv8310/Modeling/DatabaseAdaptors/SQLiteAdaptorLayer
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/SQLiteAdaptorLayer/__init__.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** __init__.py 11 Jun 2003 11:10:17 -0000 1.1
--- __init__.py 24 Aug 2003 14:15:13 -0000 1.2
***************
*** 33,36 ****
--- 33,42 ----
'host', 'user', 'password' -- ignored
+ Supported SQL datatypes are:
+
+ VARCHAR, CHAR, TEXT,
+ FLOAT, INT, INTEGER, NUMERIC, NUMBER, DECIMAL, SMALLINT, REAL
+ DATE, TIME, DATETIME
+
Informations about the SQLite database can be found at http://www.sqlite.org/.
"""
|