Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 620 Bytes

README.md

File metadata and controls

32 lines (24 loc) · 620 Bytes

Guile DBI ODBC Driver

Pre-requisites

Guile-dbi from here
Guile development libraries
unixODBC development librariies
CMake

Installation

mkdir build
cd build
cmake -G "Unix Makefiles" ..
make
sudo make install

Usage

To connect:
(db-open "odbc" "DSN=dsnname")

Any valid DSN can be used, such as:
(db-open "odbc" "DSN=dsnname;pwd=password...")

Differences With Other Guile DBD Drivers

The ODBC DBD Driver returns '() for SQL NULL values instead of #f.