OSDN Git Service

accessにつながるようになった気がする
[ea2ddl/ea2ddl.git] / ea2ddl-gen / dbflute / build.properties
1 # ========================================================================================
2 #                                                                                  for All
3 #                                                                                  =======
4
5 # -------------------------------------------------------------------
6 #  P R O J E C T
7 # -------------------------------------------------------------------
8 # @FirstProperty
9 # @Required
10 torque.project = ea2ddl
11
12 # -------------------------------------------------------------------
13 #  T A R G E T  D A T A B A S E
14 # -------------------------------------------------------------------
15 # This is the target database, only considered when generating
16 # the SQL for your Torque project. Your possible choices are:
17 #
18 #   axion, cloudscape, db2, db2400, hypersonic, interbase, mssql,
19 #   mysql, oracle, postgresql, sapdb, sybase, firebird, derby, h2
20 # -------------------------------------------------------------------
21 # @FirstProperty
22 # @Required
23 torque.database = msaccess
24
25 # -------------------------------------------------------------------
26 #  T A R G E T  L A N G U A G E
27 # -------------------------------------------------------------------
28 # (Default 'java')
29 #   The target language. Your possible choices are:
30 #     java, csharp
31 # -------------------------------------------------------------------
32 # @FirstProperty
33 torque.targetLanguage = java
34
35 # -------------------------------------------------------------------
36 #  T A R G E T  C O N T A I N E R
37 # -------------------------------------------------------------------
38 # (Default 'seasar')
39 #   The target container. Your possible choices are:
40 #     seasar, spring
41 # -------------------------------------------------------------------
42 # @FirstProperty
43 torque.targetContainer = seasar
44
45
46
47 # ========================================================================================
48 #                                                                              for OM task
49 #                                                                              ===========
50
51 # _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
52 #                                                            Basic
53 #                                                         _/_/_/_/
54 # /---------------------------------------------------------------------------
55 # [Output Directory]
56 #   java.dir: (Default Java:'../src/main/java' CSharp:'../source')
57 #     The base output directory.
58 #
59 #     If your project style is the same as example below,
60 #     you don't need to set up this property! (The default value is fit for you)
61 #
62 #   *Java Project Style
63 #     {app-project}
64 #         |
65 #         |-dbflute_[project]
66 #         |       |-build-[project].properties
67 #         |       |-...
68 #         |
69 #         |-src/main/java         // *Here!
70 #         |-src/main/resources
71 #         |-...
72 #
73 #   *CSharp Project Style
74 #     [app-solution]/dbflute_[project]/build-[project].properties
75 #     [app-solution]/mydbflute/dbflute-0.6.3
76 #     [app-solution]/source/[app-solution].sln
77 #     [app-solution]/source/[app-project(top-namespace)]/[part-namespace]/AllCommon
78 #     [app-solution]/source/[app-project(top-namespace)]/[part-namespace]/BsBhv
79 #     [app-solution]/source/[app-project(top-namespace)]/[part-namespace]/...
80 #     [app-solution]/source/[app-project(top-namespace)]/Resources/DBFlute.dicon
81 #     [app-solution]/source/[app-project(top-namespace)]/Resources/Ado.dicon
82 #
83 # @FirstProperty
84 torque.java.dir = ../../ea2ddl-dao/src/main/java
85 # ----------------/
86
87 # _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
88 #                                                          Package
89 #                                                             _/_/
90 # /---------------------------------------------------------------------------
91 # [EntityDao Package]
92 #    packageBase:
93 #      The base directory of package.
94 #
95 # @FirstProperty
96 torque.packageBase = jp.sourceforge.ea2ddl.dao
97 # ----------------/
98
99 # _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
100 #                                                 S2Dao Adjustment
101 #                                                     _/_/_/_/_/_/
102 # /---------------------------------------------------------------------------
103 # [S2Dao Version]
104 #   s2daoVersion: (Default [The latest version])
105 #
106 # @JavaOnly
107 torque.s2daoVersion = 1.0.47
108 # ----------------/
109
110 # _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
111 #                                                Little Adjustment
112 #                                                     _/_/_/_/_/_/
113 torque.isDeleteOldTableClass = true
114
115
116 # ========================================================================================
117 #                                                                            for JDBC task
118 #                                                                            =============
119
120 # - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
121 # [Database Information]
122
123 #   * * * * * * * * * * * * * * * * * * * * * * * * *
124 #   You should use './dfprop/databaseInfoMap.dfprop'
125 #   Look the file!
126 #   * * * * * * * * * * * * * * * * * * * * * * * * *
127 # - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
128
129
130
131 # =========================================================================================
132 #                                                                              for Internal
133 #                                                                              ============
134 # Normally you don't need to change these properties.
135
136 #
137 # [JDBC to java-native mapping] (NotRequired - Default 'map:{}')
138 #
139 # ex) map:{INTEGER=java.lang.Integer;TIMESTAMP=java.util.Date}
140 # ex) map:{} // If you don't want to change...
141 #
142 # Default mapping as follows:
143 # * -----------------------------------------------------
144 # * DBFlute Type  | Java Type            | CSharp Type  |
145 # * -----------------------------------------------------
146 # * CHAR          | java.lang.String     | String       |
147 # * VARCHAR       | java.lang.String     | String       |
148 # * LONGVARCHAR   | java.lang.String     | String       |
149 # * NUMERIC       | java.math.BigDecimal | decimal?     |
150 # * DECIMAL       | java.math.BigDecimal | decimal?     |
151 # * BIT           | java.lang.Boolean    | bool?        |
152 # * TINYINT       | java.math.BigDecimal | int?         |
153 # * SMALLINT      | java.math.BigDecimal | int?         |
154 # * INTEGER       | java.math.BigDecimal | int?         |
155 # * BIGINT        | java.math.BigDecimal | int?         |
156 # * REAL          | java.math.BigDecimal | decimal?     |
157 # * FLOAT         | java.math.BigDecimal | decimal?     |
158 # * DOUBLE        | java.math.BigDecimal | decimal?     |
159 # * BINARY        | byte[]               | byte[]       |
160 # * VARBINARY     | byte[]               | byte[]       |
161 # * LONGVARBINARY | byte[]               | byte[]       |
162 # * DATE          | java.util.Date       | DateTime?    |
163 # * TIME          | java.sql.Time        | DateTime?    |
164 # * TIMESTAMP     | java.sql.Timestamp   | DateTime?    |
165 # *
166 # * ------------------------------------------------------------------
167 # * A couple variations have been introduced to cover cases
168 # * that may arise, but are not covered above.
169 # * BOOLEANCHAR   | java.lang.Boolean    |
170 # * BOOLEANINT    | OR java.lang.Boolean |
171 # *
172 torque.jdbcToJavaNativeMap = map:{TINYINT=java.lang.Integer;SMALLINT=java.lang.Integer;INTEGER=java.lang.Integer;BIGINT=java.lang.Long}
173
174 # _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
175 #                                                            Dicon
176 #                                                             _/_/
177 # /---------------------------------------------------------------------------
178 # [Dicon Adjustment Information]
179 #
180 #   dbfluteDiconBeforeJ2eeIncludeDefinitionMap: (Default 'map:{}')
181 #     The definition map of dbflute dicon include path before j2ee including.
182 #     ex) map:{ dbflute/jdbc-xxx.dicon = dummy }
183 #
184 #   dbfluteDiconOtherIncludeDefinitionMap: (Default 'map:{}')
185 #     The definition map of dbflute dicon other include path.
186 #     ex) map:{ dbflute/common.dicon = dummy }
187 #
188 #
189 torque.dbfluteDiconBeforeJ2eeIncludeDefinitionMap = map:{}
190 torque.dbfluteDiconOtherIncludeDefinitionMap = map:{ app-config.dicon = dummy }
191 # ----------------/