Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Cossin Sebastien
ehden-bordeaux-atlas
Commits
3c254984
Commit
3c254984
authored
Jan 01, 2021
by
cossins
Browse files
WebAPI issues added to README
parent
6e6ef243
Changes
1
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
3c254984
...
...
@@ -73,6 +73,11 @@ git clone https://github.com/OHDSI/WebAPI.git
git checkout refs/tags/v2.8.0
```
We added 2 little fixes to WebAPI:
*
https://github.com/OHDSI/WebAPI/issues/1730 (remove a ";" in a delete statement)
*
https://github.com/OHDSI/WebAPI/issues/1731 added a Oracle driver to dependency
Our modifications can be found here: https://github.com/scossin/WebAPI
Then copy the WebAPIConfig to WebAPI folder:
```
bash
cp
./WebAPIConfig ./WebAPI
...
...
@@ -116,7 +121,7 @@ TRUNCATE TABLE webapi.source_daimon CASCADE
-- SOURCE OMOP_COHORT
INSERT
INTO
webapi
.
source
(
source_id
,
source_name
,
source_key
,
source_connection
,
source_dialect
,
username
,
password
)
SELECT
nextval
(
'webapi.source_sequence'
),
'OMOP_COHORT'
,
'OMOP_COHORT'
,
'jdbc:oracle:thin:@{IP}:{PORT}:
INFOPAT
'
,
'oracle'
,
'OMOP_COHORT'
,
'{PASSWORD}'
;
SELECT
nextval
(
'webapi.source_sequence'
),
'OMOP_COHORT'
,
'OMOP_COHORT'
,
'jdbc:oracle:thin:@{IP}:{PORT}:
{DATABASE}
'
,
'oracle'
,
'OMOP_COHORT'
,
'{PASSWORD}'
;
-- CDM (OMOP schema)
INSERT
INTO
webapi
.
source_daimon
(
source_daimon_id
,
source_id
,
daimon_type
,
table_qualifier
,
priority
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment