Sqlite3-ruby 1.3.2 Released

sqlite3-ruby version 1.3.2 has been released!

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.2 / 2010-10-30 / RubyConf Uruguay Edition!

  • Enhancements:

    • Windows: build against 3.7.3 version of SQLite3

    • SQLite3::Database can now be open as readonly

      db = SQLite3::Database.new(‘my.db’, :readonly => true)

    • Added SQLite3::SQLITE_VERSION and SQLite3::SQLITE_VERSION_NUMBER
      [nurse]

  • Bugfixes

    • type_translation= works along with Database#execute and a block
    • defined functions are kept in a hash to prevent GC. #7
    • Removed GCC specific flags from extconf.
  • DEPRECATIONS

    • SQLite3::Database#type_translation= will be deprecated in the future
      with
      no replacement.
    • SQlite3::Version will be deprecated in 2.0.0 with SQLite3::VERSION
      as the
      replacement.