01: package net.sourceforge.jaxor.example.db;
02:
03: /**
04: * Created By: Mike
05: * Date: Nov 28, 2003
06: * Time: 4:36:32 PM
07: *
08: * Last Checkin: $Author: mrettig $
09: * Date: $Date: 2004/01/24 17:54:29 $
10: * Revision: $Revision: 1.2 $
11: */
12: public class MckoiContextTestingFactory extends
13: JaxorContextTestingFactoryImpl {
14:
15: public MckoiContextTestingFactory() {
16: super (MckoiConnection.INSTANCE.getConnection(), true);
17: }
18:
19: public boolean capitalizeTableNameForMetaData() {
20: return false;
21: }
22: }
|