No commit activity in last 3 years
No release in over 3 years
Active Record adapter for connecting to an IBM Informix database
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 1.15.4.7707
 Project Readme
= 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

* You must have a sequence for each table in the form #{tablename}_seq.

Example:

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

* BYTE/TEXT columns must allow NULLs.


== Caveats

* Prefer Informix 10 or above over Informix 9. Rails/Informix makes use of
the SKIP option for pagination, which is only available since Informix 10.