File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 11# SQLiteQueryServer
22
33Bulk 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
3838This will expose the ` ./db_example/ip_dns.db ` database with the query ` SELECT * FROM ip_dns WHERE dns = ? ` on port ` 8080 ` .
You can’t perform that action at this time.
0 commit comments