Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
eikefs authored Jul 4, 2020
1 parent a38dc54 commit 05e7468
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# sql-provider
A easy way to use SQL on Java. Create new connections and easy queries.

# Creating tables
# Creating database-connections

```java
Database database = Provider.get().submit(url, user, password); // Or Provider.get().submit(url)
Expand All @@ -23,3 +23,20 @@ Database#update(Query.table()

And others examples you may get on `QueriesTest.java` file, on test folder.

# How to use

```xml
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
```

```xml
<dependency>
<groupId>com.github.eikefs</groupId>
<artifactId>sql-provider</artifactId>
<version>1.0</version>
<dependency>
```

0 comments on commit 05e7468

Please sign in to comment.