changeset 230:e1e6b820f81b 1.5.3

improving ambiguous SETs
author catherine@dellzilla
date Wed, 25 Feb 2009 15:54:34 -0500
parents 411f78dc1e07
children 5728def6bdf5
files sqlpython/sqlpyPlus.py
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/sqlpython/sqlpyPlus.py	Wed Feb 25 15:08:32 2009 -0500
+++ b/sqlpython/sqlpyPlus.py	Wed Feb 25 15:54:34 2009 -0500
@@ -364,7 +364,8 @@
     def __init__(self):
         sqlpython.sqlpython.__init__(self)
         self.binds = CaselessDict()
-        self.settable = 'autobind commit_on_exit echo maxfetch maxtselctrows timeout heading'.split()
+        self.settable += 'autobind commit_on_exit maxfetch maxtselctrows timeout heading'.split()
+        self.settable.sort()
         # settables must be lowercase
         self.stdoutBeforeSpool = sys.stdout
         self.spoolFile = None