I have a MS SQL Server DB that I am porting to DB2. I have heard you have to make the schema identical to re-use the DatabaseGeneric classes. I have noticed all the tables/columns I make are all CAPS. So I have a table like this in SQL Server:
TableName: Project
Columns:
ProjectId (primary key)
ProjectName
.. etc
In DB2 it ends up like this
TableName: PROJECT
Columns:
PROJECTID
PROJECTNAME
How does LLBLGen handle this, or do I have to change the SQL Server schema to match db2's? Thanks for any tips/help in advance.