aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorArun Isaac2022-05-05 15:07:05 +0530
committerArun Isaac2022-05-05 15:12:09 +0530
commit1fcf31ec48d4c9f8c1ed45896cfb592ebae8f7fb (patch)
tree8c9e940707da45cb97785616dd482d5fa21b4ce1 /README.md
parent849fe4e22b359942350d7f583780482f1852e4bb (diff)
downloadgn-transform-databases-1fcf31ec48d4c9f8c1ed45896cfb592ebae8f7fb.tar.gz
Prefix SQL connection parameters with sql-.
This differentiates it from virtuoso and SPARQL connection parameters. * dump.scm (call-with-genenetwork-database, dump-data-table): Prefix SQL connection parameters with sql-. * README.md (Using): Update documentation of SQL connection parameters.
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index fdad92a..069fdb8 100644
--- a/README.md
+++ b/README.md
@@ -20,11 +20,11 @@ shown below. Take care to replace the placeholders within angle brackets
with the appropriate values.
``` scheme
-((username . "<username-here>")
- (password . "<password-here>")
- (database . "<database-name-here>")
- (host . "<hostname-here>")
- (port . <port-here>))
+((sql-username . "<sql-username-here>")
+ (sql-password . "<sql-password-here>")
+ (sql-database . "<sql-database-name-here>")
+ (sql-host . "<sql-hostname-here>")
+ (sql-port . <sql-port-here>))
```
Then, to dump the database to \~/data/dump, run