-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzcode-gen.properties
More file actions
46 lines (38 loc) · 1.47 KB
/
zcode-gen.properties
File metadata and controls
46 lines (38 loc) · 1.47 KB
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
#PATH
PROJECT_PATH= /Users/dgomez/demo-bank
#MAVEN
GROUP_ID = com.vobi.demo
PROJECT_NAME = demo-bank
DOMAIN_PACKAGE_NAME = com.vobi.demo.domain
##DATABASE CONNECTION POSTGRES
DRIVER_CLASS= org.postgresql.Driver
URL= jdbc:postgresql://127.0.0.1:5432/bank
USER= postgres
PASSWORD= postgres
SCHEMA= public
TABLE_LIST= document_type,customer , account , registered_account,transaction,user_type,users,transaction_type
##DATABASE CONNECTION POSTGRES
#DRIVER_CLASS= org.postgresql.Driver
#URL= jdbc:postgresql://server_ip:5432/database_name
#USER= postgres
#PASSWORD= postgres
#SCHEMA= public
#TABLE_LIST= document_type,customer
##To List tables --> SELECT table_name FROM information_schema.tables WHERE table_schema = 'public' ORDER BY table_name;
##DATABASE CONNECTION ORACLE
#DRIVER_CLASS= oracle.jdbc.driver.OracleDriver
#URL= jdbc:oracle:thin:@//server_ip:1534/database_name
#USER= PASSPORT
#PASSWORD= PASSPORT
##Find the Schema name with the following query --> select sys_context( 'userenv', 'current_schema' ) from dual;
#SCHEMA= PASSPORT
#TABLE_LIST= document_type,customer
##To List tables --> select table_name from all_tables where owner ='PASSPORT' order by table_name;
##DATABASE CONNECTION MYSQL
#DRIVER_CLASS= com.mysql.jdbc.Driver
#URL= jdbc:mysql://server_ip:3306/database_name
#USER= root
#PASSWORD= password
#SCHEMA= public
#CATALOG= database_name
#TABLE_LIST= document_type,customer