Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I make Asynchronous ODBC Calls? Any reference materials?

Does ODBC support asynchronous calls? If it does, then can you tell me about any reference materials?

My preferred language is C++.

like image 205
Kiril Avatar asked Nov 20 '08 16:11

Kiril


1 Answers

This MSDN article could be a starting point for you: Executing Statements ODBC: Asynchronous Execution

From the article:

ODBC 3.8 in the Windows 7 SDK introduced asynchronous execution on connection-related operations ... an application determined that the asynchronous operation was complete using the polling method. Beginning in the Windows 8 SDK, you can determine that an asynchronous operation is complete using the notification method.

like image 131
belwood Avatar answered Sep 27 '22 19:09

belwood