Mike Trader
Mike Trader

Reputation: 8704

C++ ODBC SQL_ATTR_PARAMS_STATUS_PTR missing in header

I am trying to bind a structure with Rowset binding ala:

http://msdn.microsoft.com/en-us/library/aa215456(v=sql.80).aspx

THIS IS AN MSDN TYPO!

Upvotes: 0

Views: 145

Answers (1)

user2100815
user2100815

Reputation:

It's in sqlext.h, so:

 #include "sqlext.h"

Unless you wish to have the difference between sql.h and sqlext.h as your specialist subject in a quiz program, you are better off always #including both of them, without thinking.

Upvotes: 1

Related Questions