Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/proofrock/ws4sqlite-client-jvm
JVM client for ws4sqlite
https://github.com/proofrock/ws4sqlite-client-jvm
java jvm kotlin-library sqlite ws4sqlite
Last synced: 6 days ago
JSON representation
JVM client for ws4sqlite
- Host: GitHub
- URL: https://github.com/proofrock/ws4sqlite-client-jvm
- Owner: proofrock
- License: isc
- Created: 2022-01-31T19:27:52.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-09T09:22:14.000Z (almost 2 years ago)
- Last Synced: 2023-07-05T00:05:55.646Z (over 1 year ago)
- Topics: java, jvm, kotlin-library, sqlite, ws4sqlite
- Language: Java
- Homepage:
- Size: 91.8 MB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 🌱 ws4sqlite client for JVM languages
This is an implementation of a client for [ws4sqlite](https://github.com/proofrock/ws4sqlite) to use with JVM-based
languages. It adds convenience to the communication, by not having to deal with JSON, by performing checks for the
requests being well formed and by mapping errors to JDK's exceptions.## Compatibility
Compatibility is guaranteed as follows:
| ws4sqlite version | this library version |
|--------------------------------------|----------------------|
| 0.9.x | 0.9.x |
| 0.10.x | 0.10.x |
| 0.11.x, 0.12.x, **0.13.x** (current) | **0.11.x** (current) |The library requires Java 8 or higher.
## Import
In maven:
```xml
it.germanorizzo.ws4sqlite
ws4sqlite-client-jvm
0.11.1```
Or gradle:
```
implementation group: 'it.germanorizzo.ws4sqlite', name: 'ws4sqlite-client-jvm', version: '0.11.1'
```# Usage
This is a translation in Java code of the "everything included" request documented in
[the docs](https://germ.gitbook.io/ws4sqlite/documentation/requests). It shows the usage, overall; please refer to the
[javadocs](https://javadoc.io/doc/it.germanorizzo.ws4sqlite/ws4sqlite-client-jvm) for details.```java
// Prepare a client for the transmission. It can be saved in a static final field,
// it's thread safe.
final Client cli =
new ClientBuilder()
.withURL("http://localhost:12321/db2")
.withInlineAuth("myUser1", "myHotPassword")
.build();// Prepare the request, adding different queries/statements. See the docs for a
// detailed explanation, should be fairly 1:1 to the request at
// https://germ.gitbook.io/ws4sqlite/documentation/requests
final Request req =
new RequestBuilder()
.addQuery("SELECT * FROM TEMP").addQuery("SELECT * FROM TEMP WHERE ID = :id")
.withValues(new MapBuilder().add("id", 1)).addStatement("INSERT INTO TEMP (ID, VAL) VALUES (0, 'ZERO')")
.addStatement("INSERT INTO TEMP (ID, VAL) VALUES (:id, :val)")
.withNoFail()
.withValues(new MapBuilder().add("id", 1).add("val", "a")).addStatement("#Q2")
.withValues(new MapBuilder().add("id", 2).add("val", "b"))
.withValues(new MapBuilder().add("id", 3).add("val", "c")).build();
// Call ws4sqlite, obtaining a response
Response res;
try {
res = cli.send(req);
} catch (ClientException ce) {
// Exception possibly raised by the processing of the request.
// It contains the same fields from
// https://germ.gitbook.io/ws4sqlite/documentation/errors#global-errors
// It is a subclass of IOException, so catch it accordingly
System.err.format("HTTP Code: %d\n", ce.getCode());
System.err.format("At subrequest: %d\n", ce.getReqIdx());
System.err.format("Error: %s\n", ce.getMessage());
return;
} catch (IOException e) {
// This is thrown when transport errors occurs
e.printStackTrace();
return;
}// Code is 200, because all was exception-less
assert (res.getStatusCode() == 200);// Unpacking of the response. Every Response.Item matches a node of the request,
// and each one has exactly one of the following fields populated/not null:
// - getError(): reason for the error, if it wasn't successful;
// - getRowsUpdated(): if the node was a statement and no batching was involved;
// it's the number of updated rows;
// - getRowsUpdatedBatch(): if the node was a statement and a batch of values was
// provided; it's a List of the numbers of updated rows
// for each batch item;
// - getResultSet(): if the node was a query; it's a List of Map()s with an item
// per returned record, and each map has the name of the filed
// as a key of each entry, and the value as a value.
System.out.format("Number of responses: %d\n",
res.getResults().size());System.out.format("Was 1st response successful? %s\n",
res.getResults().get(0).isSuccess());System.out.format("How many records had the 1st response? %d\n",
res.getResults().get(0).getResultSet().size());System.out.format("What was the first VAL returned? %s\n",
res.getResults().get(0).getResultSet().get(0).get("VAL"));
```The encryption extension is supported and [documented](https://javadoc.io/doc/it.germanorizzo.ws4sqlite/ws4sqlite-client-jvm).