commit-gnue
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

r6493 - trunk/gnue-common/src/datasources/drivers/Base


From: reinhard
Subject: r6493 - trunk/gnue-common/src/datasources/drivers/Base
Date: Wed, 13 Oct 2004 08:39:05 -0500 (CDT)

Author: reinhard
Date: 2004-10-13 08:39:04 -0500 (Wed, 13 Oct 2004)
New Revision: 6493

Modified:
   trunk/gnue-common/src/datasources/drivers/Base/RecordSet.py
Log:
Removed temporary hack now that appserver is case insensitive.


Modified: trunk/gnue-common/src/datasources/drivers/Base/RecordSet.py
===================================================================
--- trunk/gnue-common/src/datasources/drivers/Base/RecordSet.py 2004-10-13 
10:17:55 UTC (rev 6492)
+++ trunk/gnue-common/src/datasources/drivers/Base/RecordSet.py 2004-10-13 
13:39:04 UTC (rev 6493)
@@ -157,20 +157,7 @@
       tmsg = u_("Attempted to modify read only field '%s'") % field
       raise Exceptions.ReadOnlyError, tmsg
     else:
-      # -- start quote
-      # <jamest> change it and see who screams!
-      # -- end quote
-      # old code:
-      # fn = string.lower(field)
-      # self._fields[fn] = value
-
-      # Until appserver is case insensitive we have to keep this workaround
-      if hasattr (do, '_connection') and do._connection is not None and \
-         do._connection.parameters.get ('provider') == 'appserver':
-        fn = field
-      else:
-        fn = string.lower (field)
-
+      fn = string.lower (field)
       self._fields [fn] = value
       if trackMod:
         if self._parent.isFieldBound(field):





reply via email to

[Prev in Thread] Current Thread [Next in Thread]