ASA Programming Guide
ODBC Programming
Building ODBC applications
Every C source file that calls ODBC functions must include a platform-specific ODBC header file. Each platform-specific header file includes the main ODBC header file odbc.h, which defines all the functions, data types and constant definitions required to write an ODBC program.
To include the ODBC header file in a C source file
Add an include line referencing the appropriate platform-specific header file to your source file. The lines to use are as follows:
Operating system | Include line |
---|---|
Windows |
#include "ntodbc.h"
|
UNIX |
#include "unixodbc.h"
|
Windows CE |
#include "ntodbc.h"
|
Add the directory containing the header file to the include path for your compiler.
Both the platform-specific header files and odbc.h are installed in the h subdirectory of your SQL Anywhere directory.