We are connecting to a SQL Server to persist our EJB3 objects. These objects are annotated up with @Column.
If the column name in the database starts with a capital letter (E.g. OrderName) will the ejb annotation have case sensitivity issues if the element is defined like such:
@Column
String orderName
Thanks