What do you want to change?
when you use sqlc config , it will config all the queries to sql prepared statement , but which what i want , is only part of query i need to config to prepared queries , how can i do this ?
//
version: "2"
sql:
- engine: "postgresql"
queries: "db/queries"
schema: "db/migration"
gen:
go:
package: "db"
out: "db/sqlc"
emit_json_tags: true
emit_interface: true
emit_prepared_queries: true
What database engines need to be changed?
PostgreSQL
What programming language backends need to be changed?
Go
What do you want to change?
when you use sqlc config , it will config all the queries to sql prepared statement , but which what i want , is only part of query i need to config to prepared queries , how can i do this ?
//
version: "2"
sql:
queries: "db/queries"
schema: "db/migration"
gen:
go:
package: "db"
out: "db/sqlc"
emit_json_tags: true
emit_interface: true
emit_prepared_queries: true
What database engines need to be changed?
PostgreSQL
What programming language backends need to be changed?
Go