ARTICLE AD BOX
I am working on a C++ application that connects to the SQL Server (through ODBC), performs some operations and - upon successful exit - disconnects.
However, what will happen if a crash occurs during the operation?
Do I need to clean up some kind of connection cache? I mean the connection allocates resources and they need to be released, don't they?
If so -- how?
