Sqlite3-ruby 1.3.0.beta.2 Released

sqlite3-ruby version 1.3.0.beta.2 has been released!

Special thanks goes to Aaron P. for the improved Ruby 1.9
support, backward compatibility and newer C backend!

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.

Changes:

1.3.0.beta.2 / 2010-05-15

  • Enhancements

    • Added support for type translations [tenderlove]

      @db.translator.add_translator(‘sometime’) do |type, thing|
      ‘output’ # this will be returned as value for that column
      end

  • Bugfixes

    • Allow extension compilation search for common lib paths [kashif]
      (lookup /usr/local, /opt/local and /usr)
    • Corrected extension compilation under MSVC [romuloceccon]
    • Define load_extension functionality based on availability
      [tenderlove]
    • Deprecation notices for Database#query. Fixes RF #28192