From: joe Date: 2008-03-04T01:10:01+09:00 Subject: scaffold upper case table and underscores Hello I am learning how to use ruby on rails. I was able to generate model and controller for lower case tables just doing ./script/generate model Post ./script/generate controller Post and then adding scaffold :post to the .rb controller file. I was unable to just change scaffold :post to scaffold: MY_CONTACTS. My table is upper case with underscores does this make a difference. I am also using the sybase adapter. Thanks.