Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mirek/ruby-odbc
Clone of http://www.ch-werner.de/rubyodbc + fixes
https://github.com/mirek/ruby-odbc
Last synced: about 1 month ago
JSON representation
Clone of http://www.ch-werner.de/rubyodbc + fixes
- Host: GitHub
- URL: https://github.com/mirek/ruby-odbc
- Owner: mirek
- License: other
- Created: 2010-06-24T13:07:01.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2010-06-24T13:07:23.000Z (over 14 years ago)
- Last Synced: 2024-05-09T16:18:04.578Z (8 months ago)
- Language: C
- Homepage:
- Size: 152 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: ChangeLog
- License: COPYING
Awesome Lists containing this project
README
# $Id: README,v 1.38 2010/04/25 12:27:18 chw Exp chw $
ruby-odbc-0.99991
This is an ODBC binding for Ruby. So far it has been tested with
- Ruby 1.[6-9], MySQL 3.22/MyODBC (local), unixODBC 2.1.0
on Linux 2.2-x86 and 2.6-x86_64- Ruby 1.6.4, MySQL 3.22/MyODBC (local), libiodbc 2.50
on Linux 2.2-x86- Ruby 1.[6-8], MySQL 3.22/MyODBC (remote), MS Jet Engine, MSVC++ 6.0
on Windows NT4SP6- Ruby 1.6.[3-5], MySQL 3.22/MyODBC (remote), MS Jet Engine, cygwin,
on Windows NT4SP6 and 2000- Ruby 1.8.*, SQLite/ODBC >= 0.67, libiodbc 3.52.4 on Fedora Core 3 x86
Michael Neumann and
Will Merrell reported successful compilation
with Cygwin on Win32.Requirements:
- Ruby 1.6.[3-8] or Ruby >= 1.7
- unixODBC 2.x or libiodbc 3.52 on UN*XInstallation:
$ ruby -Cext extconf.rb [--enable-dlopen|--disable-dlopen]
$ make -C ext
# make -C ext install--enable/disble-dlopen turns on/off special initialization
code to make ruby-odbc agnostic to unixODBC/iODBC driver
manager shared library names when GCC is used for compile.
In cases where unixODBC or iODBC is installed in non-standard
locations, use the option --with-odbc-dir=
when running extconf.rbInstallation of utf8 version:
$ ruby -Cext/utf8 extconf.rb [--enable-dlopen|--disable-dlopen]
$ make -C ext/utf8
# make -C ext/utf8 installInstallation MSVC:
C:..>ruby -Cext extconf.rb
C:..>cd ext
C:..>nmake
C:..>nmake install
C:..>ruby -Cutf8 extconf.rb
C:..>cd utf8
C:..>nmake
C:..>nmake installTesting:
$ ruby -Ctest test.rb DSN [uid] [pwd]
or
$ ruby -KU -Ctest/utf8 test.rb DSN [uid] [pwd]Usage:
Refer to doc/odbc.html
The difference between utf8 and non-utf8 versions are:
- non-utf8 version uses normal SQL.* ANSI functions
- utf8 version uses SQL.*W UNICODE functions and
requires/returns all strings in UTF8 formatThus, depending on the -K option of ruby one could use
that code snippet:...
if $KCODE == "UTF8" then
require 'odbc_utf8'
else
require 'odbc'
fiIt is also possible to load both non-utf8 and utf8 version
into ruby:...
# non-utf8 version
require 'odbc'
# utf8 version
require 'odbc_utf8'Whichever is loaded first, gets the module name 'ODBC'.
The second loaded module will be named 'ODBC_UTF8' (for
'odbc_utf8') or 'ODBC_NONE' (for 'odbc'). That should
allow to use both versions simultaneously in special
situations.TODO:
- heavier testing
- improve documentationAuthor:
Christian Werner
mailto:[email protected]
http://www.ch-werner.de/rubyodbc