Re: Rails with DB2

Anyone has a working installation of DB2 DBI driver for Ruby?
I am not sure, if I fully understand you: the ActiveRecord adapter
for DB2 depends on ruby-db2
(http://rubyforge.org/frs/download.php/7947/ruby-db2-0.4.3.tar.gz).
It does not use DBI. I have a working installation of ActiveRecord
for DB on Red Hat Linux and there are people out there using it on
AIX, too. There are some problems compiling the ruby-db2 project on
Windows, but some peope are trying to create a binary at the moment.

The current SVN revision of the ActiveRecord adapter passes all unit
tests, but it is not fully integrated in Rails. Scaffolding did not
work properly for timestamps in former versions of ActionView, but it
has been fixed recently. In addition, the Rails framework seems to
make the assumption that every database understands quoted integers,
which is not the case. DB2, e.g., does not. So, when working with DB2
be prepared to insert a to_i or to_s in some places.

Hope this helps!

Cheers

Maik

[email protected] wrote:

Hope this helps!

Cheers

Maik

Sure!!

Thank You!! :slight_smile:

Davide