You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the above session settings is not able to initiate the session, having the postgres module as https://github.com/jackc/pgx which registers the driver as pgx https://github.com/lib/pq - This module registers the driver as postgres. pq repo is not active and they recommend using pgx driver.
postgresPlaceholder can be used only if the driver is postgres and does not support pgx. Code
if store.sqlDriver == "postgres" {
store.placeholder = postgresPlaceholder
}
The text was updated successfully, but these errors were encountered:
bvrygud
changed the title
postgres pgx driver not support with placeholder function
postgres pgx driver not supported with placeholder function
Apr 26, 2022
Extract of fix config which I am working at
Using the above session settings is not able to initiate the session, having the postgres module as https://github.com/jackc/pgx which registers the driver as pgx
https://github.com/lib/pq - This module registers the driver as postgres. pq repo is not active and they recommend using pgx driver.
postgresPlaceholder can be used only if the driver is postgres and does not support pgx.
Code
The text was updated successfully, but these errors were encountered: