Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #75

Open
wants to merge 2 commits into
base: readme-amendments
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,10 @@ SELECT sqlj.set_classpath('public', 'sep3');

Create the configuration table `sep3tools` which maps the _"Schluesseltypen"_ and _"Woerterbuch"_ tables to the tool by using 00_dbinfo.sql and one of the two properties files db-1.properties or db-2.properties. db-1.properties uses lower case table and column names whereas db-2.properties has upper case initial letters:

You also need to specify connection parameters for your database setup in the properties file you want to use.

In some cases you need to specify the full path to the properties file in 00_dbinfo.sql . It may be best to copy both the properties file and 00_dbinfo.sql to /tmp/ and use them from there:

```postgres-sql
sep3=# \i /tmp/00_dbinfo.sql
```
Expand Down