equal
deleted
inserted
replaced
115 return '\n'.join(output) |
115 return '\n'.join(output) |
116 |
116 |
117 try: |
117 try: |
118 from mx.DateTime import DateTimeType, DateTimeDeltaType |
118 from mx.DateTime import DateTimeType, DateTimeDeltaType |
119 except ImportError: |
119 except ImportError: |
120 DateTimeType, DateTimeDeltaType = None |
120 DateTimeType = DateTimeDeltaType = None |
121 |
121 |
122 class SQLAdapterMixIn(object): |
122 class SQLAdapterMixIn(object): |
123 """Mixin for SQL data sources, getting a connection from a configuration |
123 """Mixin for SQL data sources, getting a connection from a configuration |
124 dictionary and handling connection locking |
124 dictionary and handling connection locking |
125 """ |
125 """ |