[VC ++ & Oracle] Connect Oracle ADO Operation DE Simple Multi-Thread ~

xiaoxiao2021-03-06  44

Multithreading (initializing connection database has its own splash display picture)

// thread in mysplash init

HWND HWND = this-> getsafehwnd ();

m_pthread = afxbeginthread (myadoconnect, hwnd, thread_priority_normal); // Start Threads THREAD_PRIORITY_HIGHEST

m_pthread-> m_bautode = false; // thread to manually delete

// thread function

Uint myadoconnect (lpvoid pparam)

{

// COM initialization

:: Coinitialize (0);

_ConnectionPtr PConn;

HRESULT HR;

HR = pconn.createInstance (__ uuidof (connection));

En (ac))

{

Try

{

PCONN-> Connectionstring = "provider = oraoledb.racle.1; password = LMS; persist security info = true; user ID = lms; data source = oradb1"; // Settings connection string

PCONN -> ConnectionTimeout = 10; // Setting the timeout time of the connection, optional

PCONN -> CURSORLOCATION = ADUSESERVER; / / Set the position of the cursor, optional

PCONN -> Open (",", ", - 1);

}

Catch (_COM_ERROR & E)

{

CString Strerr;

STRERR.FORMAT ("Error, Connection Database Error ~ / N Error:% S", E.ErrorMessage ());

AfxMessageBox (STRERR);

:: PostMessage ((hwnd) PPARAM, WM_CLOSE, 0, 0);

BPCONN = false;

Return False;

}

}

THEAPP.SETCONN (PCONN);

:: PostMessage ((hwnd) PPARAM, WM_CLOSE, 0, 0);

BPCONN = true;

Return True;

}

转载请注明原文地址:https://www.9cbs.com/read-69466.html

New Post(0)