Hi
I have created a JSL i JMP 11.1.1 which connects to my Oracle database and runs fine with following code:
Clear Globals();
databaseConfig = "DRIVER={Oracle in OraClient11g_home1};DBQ=MyServicenameFromOra;UID=MyLogin;SPWD=MyPassword;";
sql =
"
select *
from MyTable
";
MyData = Open Database( databaseConfig, sql, "My Data" );
Why can't I use same code in JMP 12.1.0?
Iget following error message in log:
[Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified
If I go back to JMP 11.1.1 it works fine again. I have both versions of JMP installed.
I have Oracle driver installed with a TNSNAMES.ORA file.
Lars