Update of /cvsroot/modeling/ProjectModeling/Modeling/DatabaseAdaptors/MySQLAdaptorLayer
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16859/Modeling/DatabaseAdaptors/MySQLAdaptorLayer
Modified Files:
MySQLSQLExpression.py
Log Message:
MySQL: added DOUBLE to the list of supported SQL types
Index: MySQLSQLExpression.py
===================================================================
RCS file: /cvsroot/modeling/ProjectModeling/Modeling/DatabaseAdaptors/MySQLAdaptorLayer/MySQLSQLExpression.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** MySQLSQLExpression.py 15 Dec 2003 15:05:00 -0000 1.8
--- MySQLSQLExpression.py 15 Feb 2004 20:30:36 -0000 1.9
***************
*** 35,39 ****
from Modeling.DatabaseAdaptors.MySQLAdaptorLayer.mysql_utils import *
! from Modeling.SQLExpression import SQLExpression, DateType, CharacterType
from Modeling.logging import trace, db_trace
import string
--- 35,40 ----
from Modeling.DatabaseAdaptors.MySQLAdaptorLayer.mysql_utils import *
! from Modeling.SQLExpression import SQLExpression
! from Modeling.SQLExpression import DateType, CharacterType, NumericType
from Modeling.logging import trace, db_trace
import string
***************
*** 118,122 ****
del values['timestamp']
values.update({ 'datetime': DateType,
! 'text': CharacterType })
return values
--- 119,124 ----
del values['timestamp']
values.update({ 'datetime': DateType,
! 'text': CharacterType,
! 'double': NumericType })
return values
|