santana / activerecord-informix-adapter

ActiveRecord adapter for Informix
http://rails-informix.rubyforge.org
11 stars 7 forks source link

= Rails/Informix -- ActiveRecord adapter for Informix

== Motivation

The situation that started it all [link][http://santanatechnotes.blogspot.com/2006/03/informix-adapter-for-ruby-on-rails.html].

== Rails configuration

The adapter has three options: database, username and password. Only database is mandatory. A sample database.yml file would look like this:

development: adapter: informix database: dbname@dbserver username: santana password: secret

If no username and password are specified, the user running the web server is used.

== Informix configuration

Example:

create table customers(id serial, name varchar(40)); create sequence customers_seq;

== Caveats