Is there a way to escape a semi-colon in the connection string on an Input tool?
We have a system generated password that the database admins setup, but it always has a semi-colon in it.
When I try a DSN-less connection string, the semicolon acts as a separator, so it doesn't encrypt the full password.
odbc:DRIVER={MySQL ODBC 8.0 Unicode Driver};UID=myuserid;SERVER=myserverURL;PWD=__encryptedpassword__;restofpassword
I tried wrapping the password in single quotes and double quotes, but it does not encrypt the full password either.
When I try an ODBC DSN connection, I get a prompt saying "format of the initialization string does not conform to specification".