Contents Index Embedded SQL header files A simple example

ASA Programming Guide
  Embedded SQL Programming
    Introduction

Import libraries


All import libraries are installed in the lib subdirectory, under the operating system subdirectory of the SQL Anywhere installation directory. For example, Windows import libraries are stored in the win32\lib subdirectory.

Operating system Compiler Import library
Windows Watcom C/C++ dblibtw.lib
Windows Microsoft Visual C++ dblibtm.lib
Windows CE Microsoft Visual C++ dblib9.lib
NetWare Watcom C/C++ dblib9.lib
Solaris (unthreaded applications) All compilers libdblib9.so, libdbtasks9.so
Solaris (threaded applications) All compilers libdblib9_r.so, libdbtasks9_r.so

The libdbtasks9 libraries are called by the libdblib9 library. Some compilers locate libdbtasks9 automatically, while for others you need to specify it explicitly.


Contents Index Embedded SQL header files A simple example