[Modeling-cvs] ProjectModeling/Modeling CHANGES,1.107,1.108 ModelValidation.py,1.6,1.7
Status: Abandoned
Brought to you by:
sbigaret
From: <sbi...@us...> - 2003-06-11 11:10:47
|
Update of /cvsroot/modeling/ProjectModeling/Modeling In directory sc8-pr-cvs1:/tmp/cvs-serv24498 Modified Files: CHANGES ModelValidation.py Log Message: Added a new adaptor layer for SQLite Index: CHANGES =================================================================== RCS file: /cvsroot/modeling/ProjectModeling/Modeling/CHANGES,v retrieving revision 1.107 retrieving revision 1.108 diff -C2 -d -r1.107 -r1.108 *** CHANGES 10 Jun 2003 16:31:33 -0000 1.107 --- CHANGES 11 Jun 2003 11:10:11 -0000 1.108 *************** *** 8,11 **** --- 8,13 ---- -------------------------------------------------------- + * New adaptor layer for SQLite + * Fixed Entity.externalNameForInternalName(): when used with names containing figures (such as i 'db2Id') Index: ModelValidation.py =================================================================== RCS file: /cvsroot/modeling/ProjectModeling/Modeling/ModelValidation.py,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** ModelValidation.py 14 Mar 2003 14:33:40 -0000 1.6 --- ModelValidation.py 11 Jun 2003 11:10:12 -0000 1.7 *************** *** 209,213 **** msgs=[] if model.adaptorName(): ! if model.adaptorName() not in ('Postgresql', 'MySQL'): msgs.append("adaptorName '%s' is not one of the framework's, maybe one"\ " of yours"%model.adaptorName()) --- 209,213 ---- msgs=[] if model.adaptorName(): ! if model.adaptorName() not in ('Postgresql', 'MySQL', 'SQLite'): msgs.append("adaptorName '%s' is not one of the framework's, maybe one"\ " of yours"%model.adaptorName()) |