Return the bind param dictionary embedded into this compiled object, for those values that are present. .. seealso:: :ref:`faq_sql_expression_string` - includes a usage example for debugging use cases.
(self)
| 2026 | |
| 2027 | @property |
| 2028 | def params(self): |
| 2029 | """Return the bind param dictionary embedded into this |
| 2030 | compiled object, for those values that are present. |
| 2031 | |
| 2032 | .. seealso:: |
| 2033 | |
| 2034 | :ref:`faq_sql_expression_string` - includes a usage example for |
| 2035 | debugging use cases. |
| 2036 | |
| 2037 | """ |
| 2038 | return self.construct_params(_check=False) |
| 2039 | |
| 2040 | def _process_parameters_for_postcompile( |
| 2041 | self, |
nothing calls this directly
no test coverage detected