Skip to content

Commit

Permalink
#982 added resource files to use different dictionaries
Browse files Browse the repository at this point in the history
  • Loading branch information
tfr42 committed Nov 21, 2023
1 parent 4759e71 commit 88fe1ed
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
15 changes: 15 additions & 0 deletions 00_dbinfo.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
--
-- db info
--
CREATE table public.sep3tools (
part VARCHAR (100),
value VARCHAR (255)
);

COPY public.sep3tools (part, value)
FROM 'db-1.properties'
DELIMITER '='
QUOTE '@'
CSV
;

File renamed without changes.
13 changes: 13 additions & 0 deletions db-2.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
URL=jdbc:postgresql://localhost/petroparser
USER=petroparser
PASSWORD=petroparser
WOERTERBUCH=woerterbuch."Woerterbuch"
WBKUERZEL="Kuerzel"
WBKLARTEXT="Klartext"
WBTYP="Typ"
WBATTRIBUTE="Attribute"
SCHLUESSELTYPEN=woerterbuch."Schluesseltypen"
STNEBENTYPBEZ="Nebentypbez"
STDATENFELD="Datenfeld"
SCHLUESSELMAPPING=bml.bml_schluesselmapping
DATEFIELD=PETRO

0 comments on commit 88fe1ed

Please sign in to comment.