Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> occi and windows
Hi,
I am trying to write a small occi windows applications. I am using VS Studio .Net 7 (Windows XP).
I can compile and link my small application:
int _tmain(int argc, _TCHAR* argv[])
{
Environment *env = Environment::createEnvironment(Environment::DEFAULT); try {
Connection *con =
env->createConnection("TESTUSER","TESTUSER","SERVERIP:1521/DBNAME");
env->terminateConnection(con);
} catch ( ... ) {
}
Environment::terminateEnvironment(env);
return 0;
}
When I try to run the app I got the error message:
'C:\oracle\ora92\bin\ORAXML9.DLL', Cannot find or open a required DBG file. C:\WINDOWS\system32\msvcirt.dll', No symbols loaded. Loaded 'C:\oracle\ora92\bin\ORAXSD9.DLL', Cannot find or open a required DBGfile.
The line Connection *con = env->createConnection(...) throws the exception.
Does anyone whats wrong with my app?
Michael Received on Tue Jun 14 2005 - 09:21:37 CDT
![]() |
![]() |