Posted By:
Bozidar_Dangubic
Posted On:
Thursday, July 26, 2001 10:45 AM
the question of thread-safety is in your code and not in the driver itself. it is you who has to make sure that your code propertly handles multiple threads. there is no thread-safety issues in connecting to multiple databases in multiple connections since each connection is its own object. you are not re-using the same connection object to connect to two different databases at the same time but two different objects. therefore, there is no thread-safety issues.