=begin = Ruby/DBI - a database independent interface for accessing databases - similar to Perl's DBI $Id: index.rd,v 1.26 2002/10/22 15:25:38 mneumann Exp $ == License Copyright (c) 2001, 2002 Michael Neumann All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: (1) Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. (2) Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. (3) The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. This is the BSD license which is less restrictive than GNU's GPL (General Public License). == Contributors : Michael Neumann Author of Ruby/DBI; wrote the DBI and most of the DBDs (except DBD::Pg). : Rainer Perl Author of Ruby/DBI 0.0.4 from which many good ideas were taken into the new completely rewritten version 0.0.5. : Jim Weirich Author of the PostgreSQL driver (DBD::Pg). Wrote many additional code (e.g. sql.rb, testcases). Gave many helpful hints and comments. : Eli Green Implemented DatabaseHandle#columns for Mysql and Pg. : Masatoshi SEKI For his version of module BasicQuote in sql.rb : John Gorman For his case insensitive load_driver patch and parameter parser. : David Muse For testing the SQLRelay DBD and for his initial DBD. : Jim Menard Extending Oracle DBD for method columns. : Joseph McDonald Fixed bug in DBD for PostgreSQL (default values in method columns). : Norbert Gawor Fixed bug in DBD ODBC (method columns) and proxyserver. : James F. Hranicky Patch for DBD Pg (cache PGResult#result in Tuples) which increases performance by a factor around 100 : Stephen Davies Added method Statement#fetch_scroll for PostgreSQL DBD. : Dave Thomas Several enhancements. : Daniel J. Berger contrib/dbrc : Brad Hilton Column coercing patch for DBD Mysql. : Sean Chittenden Submitted several patches and helped with lots of comments; Co-owner of the project. : MoonWolf quote/escape_bytea patch for DBD Pg. == Database Drivers (DBDs) * ADO (ActiveX Data Objects) ((*(dbd_ado)*)) depend on WinOLE from RAA. * DB2 ((*(dbd_db2)*)) depend on Michael Neumann's Ruby/DB2 Module, available from RAA. * InterBase ((*(dbd_interbase)*)) depend on the InterBase module available from RAA. * mSQL ((*(dbd_msql)*)) depend on the "mSQL Library" by DATE Ken available from the RAA. * MySQL ((*(dbd_mysql)*)) depend on the "MySQL Ruby Module" by TOMITA Masahiro (()) or available from the RAA. * ODBC ((*(dbd_odbc)*)) depend on the Ruby/ODBC (version >= 0.5) binding by Christian Werner (()) or available from the RAA. Works also together with unixODBC. To use the 'odbc_ignorecase' option you need Ruby/ODBC >= 0.9.3. * Oracle ((*(dbd_oracle)*)) depend on the "Oracle 7 Module for Ruby" version 0.2.11 by Yoshida Masato, available from RAA. Works fine with Oracle 8/8i. * PostgreSQL ((*(dbd_pg)*)) depend on Noboru Saitou's Postgres Package: (()) * Proxy/Server ((*(dbd_proxy)*)) depend on distributed Ruby (DRb) available from RAA. * SQLite ((*(dbd_sqlite)*)) depend only on the SQLite C-library from: (()). * SQLRelay ((*(dbd_sqlrelay)*)) depend on the Ruby library of SQLRelay: (()). * Sybase ((*(dbd_sybase)*)) this DBD is currently outdated and will ((*not*)) work with DBI versions > 0.0.4 !!! == ChangeLog See (()). == ToDo See (()). == Download Ruby/DBI is available for from the (()). If you're running FreeBSD or NetBSD, have a look at their package collections. FreeBSD has for DBI and each DBD an easy to install package, NetBSD currently only for PostgreSQL but more is to come. A NetBSD package for MySQL is available at (()). == Installation All available DBDs come with this package, but you should only install the DBDs you really need. === To install all: ruby setup.rb config ruby setup.rb setup ruby setup.rb install === To install dbi and some DBDs: ruby setup.rb config --with=dbi,dbd_pg.... ruby setup.rb setup ruby setup.rb install Choose the packages to install by specifing them after the option (({--with})). == Mailing List A mailinglist for DBI-specific discussions is available from the (()). Our former mailing-list was at (()); please, don't use it! == Documentation See the directories lib/*/doc or ext/*/doc for DBI and DBD specific informations. The DBI specification is lib/dbi/doc/DBI_SPEC or lib/dbi/doc/html/DBI_SPEC.html or available from WWW at (()). The DBD specification (how to write a database driver) is lib/dbi/doc/DBD_SPEC or lib/dbi/doc/html/DBD_SPEC.html or available from WWW at (()). == Applications === sqlsh.rb The SQL command line interpreter sqlsh.rb is available in directory bin/commandline. It gets installed by default. == Examples Examples can be found in the examples/ subdirectory. In this directory there is the file proxyserver.rb which has to be run if you use the DBD::Proxy, to access databases remote over a TCP/IP network. === A simple example require 'dbi' # connect to a datbase dbh = DBI.connect('DBI:Mysql:test', 'testuser', 'testpwd') puts "inserting..." 1.upto(13) do |i| sql = "insert into simple01 (SongName, SongLength_s) VALUES (?, ?)" dbh.do(sql, "Song #{i}", "#{i*10}") end puts "selecting..." sth=dbh.prepare('select * from simple01') sth.execute while row=sth.fetch do p row end puts "deleting..." dbh.do('delete from simple01 where internal_id > 10') dbh.disconnect === The same using Ruby's features require 'dbi' DBI.connect('DBI:Mysql:test', 'testuser', 'testpwd') do | dbh | puts "inserting..." sql = "insert into simple01 (SongName, SongLength_s) VALUES (?, ?)" dbh.prepare(sql) do | sth | 1.upto(13) { |i| sth.execute("Song #{i}", "#{i*10}") } end puts "selecting..." dbh.select_all('select * from simple01') do | row | p row end puts "deleting..." dbh.do('delete from simple01 where internal_id > 10') end <<< sf_logo =end