return dbapi.ROWID
class OracleCompiler_cx_oracle(OracleCompiler):
- def bindparam_string(self, name, quote=None):
+ def bindparam_string(self, name, quote=None, **kw):
if quote is True or quote is not False and \
self.preparer._bindparam_requires_quotes(name):
quoted_name = '"%s"' % name
self._quoted_bind_names[name] = quoted_name
- return OracleCompiler.bindparam_string(self, quoted_name)
+ return OracleCompiler.bindparam_string(self, quoted_name, **kw)
else:
- return OracleCompiler.bindparam_string(self, name)
+ return OracleCompiler.bindparam_string(self, name, **kw)
class OracleExecutionContext_cx_oracle(OracleExecutionContext):
class SybaseSQLCompiler_pysybase(SybaseSQLCompiler):
- def bindparam_string(self, name):
+ def bindparam_string(self, name, **kw):
return "@" + name
class SybaseDialect_pysybase(SybaseDialect):