jcrchristy
Technical User
I want to connect to a remote Oracle Database.
I created the odbc DSN and used Oracle odbc driver.
The code is like this...
Set ws = DBEngine.Workspaces(0)
Set daodatabase = ws.OpenDatabase("", False, False, "ODBC;DSN=odbc_dsn;uid=ora95;pwd=oraadmin;")
Set daorecordset = daodatabase.OpenRecordset("select * from user_table")
I am getting this error "The Microsoft Jet database engine cannot find the input table or query ora95.user_table. Make sure it exists and that its name is spelled correctly. (Error 3078)"
This table is in the database...
what could be wrong? Please help...
I created the odbc DSN and used Oracle odbc driver.
The code is like this...
Set ws = DBEngine.Workspaces(0)
Set daodatabase = ws.OpenDatabase("", False, False, "ODBC;DSN=odbc_dsn;uid=ora95;pwd=oraadmin;")
Set daorecordset = daodatabase.OpenRecordset("select * from user_table")
I am getting this error "The Microsoft Jet database engine cannot find the input table or query ora95.user_table. Make sure it exists and that its name is spelled correctly. (Error 3078)"
This table is in the database...
what could be wrong? Please help...