Is it possible to create pointer of DBClientConnection
and use it in multiply threads?
connection = new DBClientConnection();
connection->connect("localhost");
Then use connection
in thread.
Is it safe to access to connection
simultaneously?