Hi,
Need urgent help.
I am using below code for establishing ODBC connection but getting error as
"ODBC operation failed.
Unable to log on to the database."
Please help.
static void SITestODBC(Args _args) { OdbcConnection oDBCConnection; LoginProperty loginProperty; str connectionString; try { connectionString = "DSN=RFIDDB_UAT;Database=myTest_db;UID=sa;PWD=$1234;"; loginProperty = new LoginProperty(); loginProperty.setOther(connectionString); oDBCConnection = new ODBCConnection(loginProperty); if(oDBCConnection) { info("success"); } } catch { throw error("@CHI814"); } }