[Mono-devel-list] IBM DB2 db2_36.so problem

2005-07-01 Thread Pablo Cardona
Hi, I'm trying to access to a DB2 database in a remote computer, and this exceptions is thrown: Unhandled Exception: System.DllNotFoundException: db2_36 I've read in the mono-project web page that I need the library db2_36.so, but I can't find this library anywhere. I,ve installed IBM DB2

Re: [Mono-devel-list] IBM DB2 db2_36.so problem

2005-07-01 Thread Rafael Teixeira
The file you need is libdb2_36.so. Do a locate for it. For 8.1 it would be something like /opt/IBMdb2/V8.1/lib/libdb2_36.so So a /sbin/ldconfig /opt/IBMdb2/V8.1/lib would make the library loader know where to find your copy of libdb2_36.so. But I'm not sure version 8.2 is compatible with

Re: [Mono-devel-list] IBM DB2 db2_36.so problem

2005-07-01 Thread Pablo Cardona
Thanks for your answer, I've installed DB2 Runtime Clients V8.1 and now I have the libdb2.so library, I've made the /sbin/ldconfig and renamed libdb2.so to libdb2_36.so to match it with the not found error, and it seems that the cli works properly, but another exception has come: Unhandled

Re: [Mono-devel-list] IBM DB2 db2_36.so problem

2005-07-01 Thread Rafael Teixeira
Probably yes. But at least this exception is being thrown in the managed code part of the provider and so you can debug it and help us possibly deal with new situation. :) On 7/1/05, Pablo Cardona [EMAIL PROTECTED] wrote: Thanks for your answer, I've installed DB2 Runtime Clients V8.1 and now