instiki/vendor/plugins/sqlite3-ruby
Jacques Distler 4f8759cdf3 Update vendored Sqlite3-ruby to 1.3.0
Also, some tweaks to Maruku.
2010-06-10 22:42:33 -05:00
..
ext/sqlite3 Update vendored Sqlite3-ruby to 1.3.0 2010-06-10 22:42:33 -05:00
faq Update vendored Sqlite3-ruby to 1.3.0 2010-06-10 22:42:33 -05:00
lib Update vendored Sqlite3-ruby to 1.3.0 2010-06-10 22:42:33 -05:00
test Update vendored Sqlite3-ruby to 1.3.0 2010-06-10 22:42:33 -05:00
API_CHANGES.rdoc Update vendored Sqlite3-ruby to 1.3.0 2010-06-10 22:42:33 -05:00
ChangeLog.cvs Update Vendored sqlite3-ruby 2009-12-22 20:48:32 -06:00
CHANGELOG.rdoc Update vendored Sqlite3-ruby to 1.3.0 2010-06-10 22:42:33 -05:00
LICENSE Update SQLite3 Drivers 2008-12-15 14:45:15 -06:00
Manifest.txt Update vendored Sqlite3-ruby to 1.3.0 2010-06-10 22:42:33 -05:00
Rakefile Update vendored Sqlite3-ruby to 1.3.0 2010-06-10 22:42:33 -05:00
README.rdoc Update vendored Sqlite3-ruby to 1.3.0 2010-06-10 22:42:33 -05:00
setup.rb Update vendored Sqlite3-ruby to 1.3.0 2010-06-10 22:42:33 -05:00

= SQLite3/Ruby Interface

* http://github.com/luislavena/sqlite3-ruby
* http://rubyforge.org/projects/sqlite-ruby
* http://sqlite-ruby.rubyforge.org

== DESCRIPTION

This module allows Ruby programs to interface with the SQLite3
database engine (http://www.sqlite.org).  You must have the
SQLite engine installed in order to build this module.

Note that this module is NOT compatible with SQLite 2.x.

== Compilation and Installation

Install SQLite3, enabling option SQLITE_ENABLE_COLUMN_METADATA (see
www.sqlite.org/compile.html for details).

Then do the following:

  ruby setup.rb config
  ruby setup.rb setup
  ruby setup.rb install

Alternatively, you can download and install the RubyGem package for
SQLite3/Ruby (you must have RubyGems and SQLite3 installed, first):

  gem install sqlite3-ruby

If you have sqlite3 installed in a non-standard location, you can specify the location of the include and lib files by doing:

  gem install sqlite3-ruby -- --with-sqlite3-include=/opt/local/include \
     --with-sqlite3-lib=/opt/local/lib

== Usage

For help figuring out the SQLite3/Ruby interface, check out the
FAQ[http://sqlite-ruby.rubyforge.org/sqlite3/faq.html]. It includes examples of
usage. If you have any questions that you feel should be address in the
FAQ, please send them to jamis@37signals.com

== Source Code

The source repository is accessible via git:

  git clone git://github.com/luislavena/sqlite3-ruby.git

== Contact Information

The project page is http://rubyforge.org/projects/sqlite-ruby. There, you can
find links to mailing lists and forums that you can use to discuss this
library. Additionally, there are trackers for submitting bugs and feature
requests. Feel free to use them!