Skip to content

Commit 337abbe

Browse files
committed
readme: semantics
1 parent 1d3d973 commit 337abbe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SQLiteQueryServer
22

33
Bulk query SQLite database over the network.
4-
Way much faster than [SQLiteProxy](https://github.com/assafmo/SQLiteProxy)!
4+
Way faster than [SQLiteProxy](https://github.com/assafmo/SQLiteProxy)!
55

66
# Installation
77

@@ -28,11 +28,11 @@ Usage of SQLiteQueryServer:
2828
## Creating a server
2929

3030
```bash
31-
SQLiteQueryServer --db ./db_example/ip_dns.db --query "SELECT * FROM ip_dns WHERE dns = ?" --port 8080
31+
SQLiteQueryServer --db "$DB_PATH" --query "$PARAMETERIZED_SQL_QUERY" --port "$PORT"
3232
```
3333

3434
```bash
35-
SQLiteQueryServer --db "$DB_PATH" --query "$PARAMETERIZED_SQL_QUERY" --port "$PORT"
35+
SQLiteQueryServer --db ./db_example/ip_dns.db --query "SELECT * FROM ip_dns WHERE dns = ?" --port 8080
3636
```
3737

3838
This will expose the `./db_example/ip_dns.db` database with the query `SELECT * FROM ip_dns WHERE dns = ?` on port `8080`.

0 commit comments

Comments
 (0)