[Rails] Re: ActionController::RoutingError in Products#index

2009-02-12 Thread Ashok Bee
Thomas r. Koll wrote: Hi Ashok, id's are always integer. I'm quite sure it's the same with an Oracle DB. So please fix you database and retry. ciao, tom On Feb 11, 6:19�pm, Ashok Bee rails-mailing-l...@andreas-s.net wrote: create table products ( id number not null, ... primary

[Rails] ActionController::RoutingError in Products#index

2009-02-11 Thread Ashok Bee
Env: rails 2.2.2 oracle 10g Have created a table and sequence create table products ( id number not null, title varchar2(100) not null, description varchar2(255) not null, image_url varchar2(200) not null, price number(10,2) not null, primary key(id) ) create