Contents Index Building ODBC applications Linking ODBC applications on Windows

ASA Programming Guide
  ODBC Programming
    Building ODBC applications

Including the ODBC header file


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

  1. 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"
  2. 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.


Contents Index Building ODBC applications Linking ODBC applications on Windows