git-svn-id: svn://ultimatepp.org/upp/trunk@632 f0d560ea-af0d-0410-9eb7-867de7ffcac7

This commit is contained in:
rylek 2008-11-11 08:21:59 +00:00
parent 9aa02a61b6
commit 9cbcdd3ebb

View file

@ -751,7 +751,7 @@ OCI8Connection::OCI8Connection(Oracle8& s)
: session(&s)
, oci8(s.oci8)
{
LOG("OCI8Connection construct, #" << ++conn_count << " total");
LLOG("OCI8Connection construct, #" << ++conn_count << " total");
refcursor = false;
if(!session->AllocOciHandle(&stmthp, OCI_HTYPE_STMT)
|| !session->AllocOciHandle(&errhp, OCI_HTYPE_ERROR))
@ -786,7 +786,7 @@ void OCI8Connection::Clear() {
OCI8Connection::~OCI8Connection() {
Clear();
LOG("OCI8Connection destruct, #" << --conn_count << " left");
LLOG("OCI8Connection destruct, #" << --conn_count << " left");
}
SqlConnection *Oracle8::CreateConnection() {