What is the corresponding C++ data type to the SQL numeric(18,0) data type?
I need a data type in C++ to store numeric(18,0) of SQL in it.
What is the corresponding C++ data type to the SQL numeric(18,0) data type?
I need a data type in C++ to store numeric(18,0) of SQL in it.
It says on MSDN that the numeric is mapped to CString in C++.
Reference: SQL: SQL and C++ Data Types (ODBC)