could you please assist me with this.
I'm trying to connect to a H2 Database using PHP OBDC and I get the following error message: "SQL error: [unixODBC]Unknown authentication type, SQL state 28000 in SQLConnect"
I use the following to connect: $DSN = "Driver=PostgreSQL;Server=$Srv;Port=5435;Database=$DB;"; $CID = odbc_connect($DSN,$usr,$pwd);
How do i parse the Authentication type in the connection string.
Thanks.