I am developing an application in C++ and need to access an MSDE and an SQL
server database. Performance is my biggest concern. I will need to use
connection pooling too. My questions is what is the best way to access that
database from C++.
Some sample use an SQL API (SQLConnect() function "sql.h").
Some sample use the COM objects (_RecordsetPtr pRst("ADODB.Recordset");)
Deveng