MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / do_bindparam

Method do_bindparam

lib/sqlalchemy/sql/compiler.py:2768–2773  ·  view source on GitHub ↗
(m)

Source from the content-addressed store, hash-verified

2766 self._add_to_params(textclause)
2767
2768 def do_bindparam(m):
2769 name = m.group(1)
2770 if name in textclause._bindparams:
2771 return self.process(textclause._bindparams[name], **kw)
2772 else:
2773 return self.bindparam_string(name, **kw)
2774
2775 if not self.stack:
2776 self.isplaintext = True

Callers

nothing calls this directly

Calls 2

bindparam_stringMethod · 0.95
processMethod · 0.45

Tested by

no test coverage detected