-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
221baa6
commit 2cce686
Showing
1 changed file
with
22 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,22 @@ | ||
# dbeaver-jdbc-libsql | ||
LibSQL JDBC driver | ||
# LibSQL JDBC driver | ||
|
||
[![status](https://img.shields.io/github/actions/workflow/status/dbeaver/dbeaver-jdbc-libsql/ci.yml?branch=devel)](https://github.com/dbeaver/dbeaver-jdbc-libsql/actions/workflows/ci.yml?query=branch%3Adevel) | ||
[![javadoc](https://javadoc.io/badge2/dbeaver/dbeaver-jdbc-libsql/javadoc.svg)](https://javadoc.io/doc/dbeaver/dbeaver-jdbc-libsql) | ||
[![Apache 2.0](https://img.shields.io/github/license/cronn-de/jira-sync.svg)](http://www.apache.org/licenses/LICENSE-2.0) | ||
|
||
LibSQL [JDBC](https://en.wikipedia.org/wiki/JDBC_driver) is a library for accessing and creating [LibSQL](https://github.com/tursodatabase/libsql) database in Java. | ||
- It is a pure Java library | ||
- Version 1.0 uses simple [HTTP API](https://github.com/tursodatabase/libsql/blob/main/docs/http_api.md) protocol for LibSQL | ||
- It supports prepared statements, database metadata, resultsets, data types and most of other JDBC features | ||
|
||
## Download | ||
Download from Maven Central or from the releases page. | ||
```xml | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.dbeaver.jdbc</groupId> | ||
<artifactId>com.dbeaver.jdbc.driver.libsql</artifactId> | ||
<version>1.0.0</version> | ||
</dependency> | ||
</dependencies> | ||
``` |