My program can well connect to my local PostgreSQL 13 server with these parameters :
username = Juan
password = <password in hex>
host = localhost
port = 5432
dbname = madrid
schema = huv_2.9
sslmode = allow
But on PGAdmin, when i try to create a server connection, it's refused.
PgAdmin prompts for a password with this message :
Please enter the password for the user 'Juan' to connect the server - "PostgreSQL 13"
And my password (hashed, encrypted or in clear text) don't work.
I think i'm in the same case as people who have to switch from scram-sha-256 to md5 : Link to my potential problem
Why i can't set PGAdmin to connect to my local server as my program does (and so forget about scram-sha-256 and md5) ?
Why PGAdmin can not ignore the conf files in C:\Program Files\PostgreSQL\13\Data ? My program well do it.