Expand description
Visitors for reading an abstract SQL syntax tree, generating the query and gathering parameters in the right order.
The visitor module should not know how to construct an AST, just how to read one. Everything related to the tree generation is in the ast module.
Structs§
- Postgres
- A visitor to generate queries for the PostgreSQL database.
Traits§
- Renderer
- A function travelling through the query AST, building the final query string and gathering parameters sent to the database together with the query.