[Mono-list] System.DllNotFoundException: oci

Peter Dennis Bartok peter@novonyx.com
Tue, 12 Apr 2005 10:30:11 -0600


>As you see my system perfectly compiles... which means i have the library 
>and i use them i am not sure this is the answer to my problem.
>I have installed absolutely all the packages i could find on Mono/Download, 
>but maybe i am still missing something? Maybe there is a command line that 
>could proove i installed them correctly?
Successful compilation of managed code does *not* mean that you have the 
unmanaged libraries installed. The assembly you're using could P/Invoke into 
unmanaged code, and when it does and the library from which it tries to pull 
a function does not exist, you get the DllNotFoundException.

Peter