Re: [GENERAL] simultaneous use of JDBC and libpq

2004-06-30 Thread Marco Colombo
Richard Huxton wrote: > alltest1 wrote: > >>Hi, >> >>I am wondering if it is thread-safe to use both JDBC and libpq >>simultaneously. >> >>On a Linux, JDBC is used by Tomcat and libpq is used by a client >>software written in C language. So JDBC and libpq are used by two

Re: [GENERAL] simultaneous use of JDBC and libpq

2004-06-23 Thread alltest1
For everyone who replied to my question, thank you very much!! Bob ---(end of broadcast)--- TIP 4: Don't 'kill -9' the postmaster

Re: [GENERAL] simultaneous use of JDBC and libpq

2004-06-23 Thread Csaba Nagy
Yes, it is safe. The JDBC and the libpq app will share nothing between each other, so there can not be any threading issues between them. You can only have thread safety issues inside the same application which uses multiple threads sharing resources between each other. Cheers, Csaba. On Wed, 200

Re: [GENERAL] simultaneous use of JDBC and libpq

2004-06-23 Thread Richard Huxton
alltest1 wrote: > Hi, > > I am wondering if it is thread-safe to use both JDBC and libpq > simultaneously. > > On a Linux, JDBC is used by Tomcat and libpq is used by a client > software written in C language. So JDBC and libpq are used by two > different programs. > If