public final class SQLRenderContext:
Mutable state local to one SQL rendering operation.
The context is never cached or shared. It records parameters in the exact marker order produced by the structured SQL tree.
context = SQLRenderContext(PostgreSQLDialect()) marker = context.bind(42)
| Modifier and Type | Member | Description |
|---|---|---|
| public readonly property | dialectdialect as SQLDialect |
Dialect selected explicitly by the provider configuration. |
| public readonly property | parameters | Bound values in one-based prepared-statement order. |
| Modifier and Type | Member | Description |
|---|---|---|
| public | SQLRenderContextSQLRenderContext(dialect as SQLDialect): |
Creates an empty rendering context. |