sqlc
sqlc copied to clipboard
difference between sql_package and sql_driver
https://docs.sqlc.dev/en/latest/reference/config.html sqlc.yaml description of these settings is unclear, sorry for creating the issue but discord and github q/a are dead
for instance, isn't pgx itself IS a driver? But in practice you only required to specify sql_package
- so what's the heck is
sql_driversetting then? - what will happen if I specify only
sql_packageand omitsql_driver? - if I'm using
pgxconnection pool - do I need to setsql_drivertopgx? - why would anyone use
sql_packageaspgxandsql_driveraslib/pq?