Does Anyone know how to set the table name as "CR_Country"?

One issue is there in connecting one schema(table) “CR_Country” and
“CR_Security” from this sybase Db.

I have set false for pluralize_table_name and also setting the table
name explicitly too as follow in the “environment.rb” :

ActiveRecord::Base.pluralize_table_names = false

class CR_Country < ActiveRecord::Base
set_table_name “CR_Country”
end.

Now it gives an error as

not able to find object “select * from cR_Country”

and another one as :
not able to find object “select * from cr_security”

It somewhere converted the table name to small letters. Please help me
out if you have any suggestion.

Thanks in advance,
Joshua…

Try overrding Rails default table name with set_table_name “CR_Country”
in the model.