Good Day!
I got an error when I try to connect to db Google Cloud by dint of slonik:
const pool = createPool(
`socket:userName:password@/cloudsql/teest-123986:europe-west3:test?db=dbName`
)
I got:
error: throw new Error('SASL: SCRAM-SERVER-FIRST-MESSAGE: client password must be a string')
When I checked I saw that password = null (parser of string gave incorrect value).
I used this guide for connection string.
Why I got this error?