I had two problems to access SQL server database:
- how to set schema
The table I need to access is under schema 'general' instead of 'dbo'. Unless I use set_table_name, I will get errors like 'Invalid object'
class Role < ActiveRecord::Base
set_table_name "general.Role"
end
Is there another way to set schema in the properties of jdbc url. I checked MS jdbc driver and jtds driver, but cannot find such a property.
- how to handle attribute names
When accessing db2, all attributes names are lower case. But for mssql, the attribute names are kept as the same case as defined in the database, for example, "RoleID". I'm wondering if only db2 driver forces attribute names to lower case.