CWODBC
! Copyright 2002 by Dan Pressnell (dan_pressnell@yahoo.com)
!====================================
! cwODBC version 1.9
!====================================
! Changed in version 1.9
! --- Added sqlBuilder interface (see note at interface declaration)
! --- Fixed bug in GetColumnValue(columnsreturned+1) when using file structure with no fields.
! Changed in version 1.8
! --- Added SendQuerySilent method to send query with silent error handling
! Changed in version 1.7
! --- Added FillQueueWithResultByName method
! --- Queries that fill a queue (and the FillQueue... methods) now leave queue record 1 as the current entry when finished
! Changed in version 1.6
! --- Added method to get the database server name (different than prop:dbmsver)
! changed in version 1.5
! --- Added the method CreateAccessDatabase() so you can create a new blank Microsoft Access Database
! file at runtime (subject to change!)
! changed in version 1.3
! --- Added SqlQuote and SqlLike as stand-alone procedures
! changed in version 1.2
! --- return values added for some procedures
! --- new methods added (see interface declaration)
! changed in version 1.1
! --- Attempt to fix situation where column count is 0 after first query
! This is freeware. You are free to make any changes, but if you distribute this package, please distribute
! the original package as supplied by me. If you think you have some good changes or additions, suggest
! them to me.
! To use this package:
!
! (1) put cwodbc.inc and cwodbc.clw in clarion's LIBSRC folder
! (2) put odbc32.lib and Odbccp32.lib in clarion's LIB folder
! (3) compile cwsql.prj
! (4) put the compiled cwsql.dll in clarion's BIN folder, and cwsql.lib in clarion's LIB folder
! (5) in your apps or projects, put this:
! in global embeds before includes...
! INCLUDE('cwodbc.inc'), once
! in the project settings, add the library file cwsql.lib
! See the sample code in the Sample1.prj project and source files
! No support is guaranteed, and there will be no templates for this package. If you have comments or suggestions,
! I prefer that you use the newsgroups devoted to Clarion for Windows, so everybody can benefit, and I won't
! be swamped with private email.
! Be aware that with the release of Clarion 5.6, with ADO, much of this might become outdated technology, although
! I don't think so, because this package is very lean and fast, and I doubt ADO will improve on that.