Sample Code for Asynchronous Programming in C

I need to program an asynchronous ODBC driver, which should handle user-requested ODBC APIs asynchronously. I desperately want to know how to write an asynchronous program on all platforms. Can you provide me with basic C code on how to correctly asynchronous code?

Thanks in advance.

+6
asynchronous
source share
1 answer

code for asynchronous I / O is a good stream to start with.

Portable solutions do not really exist. It is also different for socket and file streams on all platforms.

libevent is a good abstraction.

Writing ODBC is not for the faint of heart.

+2
source share

All Articles