Beispiel #1
0
 def bindparam_string(self, name):
     if self.preparer._bindparam_requires_quotes(name):
         quoted_name = '"%s"' % name
         self._quoted_bind_names[name] = quoted_name
         return OracleCompiler.bindparam_string(self, quoted_name)
     else:
         return OracleCompiler.bindparam_string(self, name)
Beispiel #2
0
 def bindparam_string(self, name):
     if self.preparer._bindparam_requires_quotes(name):
         quoted_name = '"%s"' % name
         self._quoted_bind_names[name] = quoted_name
         return OracleCompiler.bindparam_string(self, quoted_name)
     else:
         return OracleCompiler.bindparam_string(self, name)