ODBC

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Modules >

ODBC

 

Description

 

ODBC functionality are not handled by a specific module but using an include file.

 

How to do?

 

ODBC functionalities are now implemented using a wrapper developed by José Roca.

 

To use ODBC functionalities inside a script just add the following line of code:

 

 #include "%APP_INCLUDEPATH%\ODBC352.INC"

 

This line will tell thinBasic to load all ODBC functionalities from an include file thinBasic will maintain. All ODBC interface functions are inside a new library called "ODBC352.DLL" maintained by thinBasic.

Many functions are listed in new ODBC interface. We will not document all of them but instead we will create some self documented scripts you can use as driving direction. Of course we will give our support in thinBasic forum.

 

See examples in thinBasic\SampleScripts\ODBC\ directory to have an initial idea on how to implement ODBC in your scripts.

 

Thanks

 

 

Important notes about ODBC include file

 

A big thanks to José Roca and his fantastic web site. José developed almost all our interface to ODBC world.