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)
| 2086 | |
| 2087 | @property |
| 2088 | def params(self): |
| 2089 | """Return the bind param dictionary embedded into this |
| 2090 | compiled object, for those values that are present. |
| 2091 | |
| 2092 | .. seealso:: |
| 2093 | |
| 2094 | :ref:`faq_sql_expression_string` - includes a usage example for |
| 2095 | debugging use cases. |
| 2096 | |
| 2097 | """ |
| 2098 | return self.construct_params(_check=False) |
| 2099 | |
| 2100 | def _process_parameters_for_postcompile( |
| 2101 | self, |
nothing calls this directly
no test coverage detected