ANN: Sequel 0.1.9.9 Released

Sequel version 0.1.9.9 has just been released. This release includes a
new ADO adapter and a couple of bug fixes, all courtesy of Chris
Carter. Following is a discussion of the changes:

ADO adapter

···

===========

Windows users now have an easier and faster way to access ADO data
sources, without having to install DBI:

  require 'sequel/ado'
  DB = Sequel.ado('mydb')
  # there's no third step :slight_smile:

Bug Fixes

* Added automatic column aliasing to #avg, #sum, #min and #max (#30).
You can now use these convenience methods with MSSQL databases.

* Fixed broken Sequel::DBI::Dataset#fetch_rows (#29).

=============================================

Sequel project page:
  <http://code.google.com/p/ruby-sequel>

Sequel documentation:
  <http://sequel.rubyforge.org>

Join the Sequel-talk group:
  <http://groups.google.com/group/sequel-talk>

Install the gem:
  sudo gem install sequel

Or check out the source and install manually:
  svn co http://ruby-sequel.googlecode.com/svn/trunk sequel
  cd sequel
  rake install