Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 88e64cfd086c099e9b9a683844f37f699eed52fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# <copyright>
#
# Copyright (c) 2005, 2006, 2007, 2008 Springsite BV (The Netherlands) and others
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
#   Martin Taal
# </copyright>
#
# $Id: local_test.properties,v 1.8 2008/03/30 15:11:58 mtaal Exp $


# <cfgname>.dbadapter= name of a dbadapter (see dbadapters.properties)
# <cfgname>.mapstrategy= mapping strategy, either SINGLE_TABLE or JOINED 
# <cfgname>.optimistic= optimistic setting, either true or false

mysql_a_o.dbadapter=mysql
mysql_a_o.mapstrategy=SINGLE_TABLE
mysql_a_o.optimistic=true

mysql_e_o.ejb3=true
mysql_e_o.dbadapter=mysql
mysql_e_o.mapstrategy=JOINED
mysql_e_o.optimistic=true

mysql_s_o.dbadapter=mysql
mysql_s_o.mapstrategy=JOINED
mysql_s_o.optimistic=true

mysql_xsingle.dbadapter=mysql
mysql_xsingle.mapstrategy=SINGLE_TABLE
mysql_xsingle.optimistic=true
mysql_xsingle.xml=true

mysql_xjoin.dbadapter=mysql
mysql_xjoin.mapstrategy=JOINED
mysql_xjoin.optimistic=true
mysql_xjoin.xml=true

hsqldb_h_o.dbadapter=hsqldbmem
hsqldb_h_o.mapstrategy=SINGLE_TABLE
hsqldb_h_o.optimistic=true

#hsqldb_a_o.dbadapter=hsqldb
#hsqldb_a_o.mapstrategy=SINGLE_TABLE
#hsqldb_a_o.optimistic=true

#hsqldb_e_o.ejb3=true
#hsqldb_e_o.dbadapter=hsqldb
#hsqldb_e_o.mapstrategy=JOINED
#hsqldb_e_o.optimistic=true

#pgsql_a_o.dbadapter=pgsql
#pgsql_a_o.mapstrategy=SINGLE_TABLE
#pgsql_a_o.optimistic=true

#pgsql_s_o.dbadapter=pgsql
#pgsql_s_o.mapstrategy=JOINED
#pgsql_s_o.optimistic=true

#mssql_a_o.dbadapter=mssql
#mssql_a_o.mapstrategy=SINGLE_TABLE
#mssql_a_o.optimistic=true

#mssql_s_o.dbadapter=mssql
#mssql_s_o.mapstrategy=JOINED
#mssql_s_o.optimistic=true

Back to the top