passed via query string, so that it is properly interpreted
by Kinterbasdb. [ticket:1779]
has_sequence() to work with older versions of Firebird
that don't provide labels for result columns. [ticket:1521]
+ - Added integer coercion to the "type_conv" attribute when
+ passed via query string, so that it is properly interpreted
+ by Kinterbasdb. [ticket:1779]
+
0.6.0
=====
opts['host'] = "%s/%s" % (opts['host'], opts['port'])
del opts['port']
opts.update(url.query)
-
+
+ util.coerce_kw_type(opts, 'type_conv', int)
+
type_conv = opts.pop('type_conv', self.type_conv)
concurrency_level = opts.pop('concurrency_level', self.concurrency_level)
-
+
if self.dbapi is not None:
initialized = getattr(self.dbapi, 'initialized', None)
if initialized is None: