项目作者: Huskehhh

项目描述 :
Simple MySQL database wrapper for Java
高级语言: Java
项目地址: git://github.com/Huskehhh/MySQL.git
创建时间: 2013-05-30T09:45:40Z
项目社区:https://github.com/Huskehhh/MySQL

开源协议:MIT License

下载


A simple JDBC wrapper

Java CI with Gradle

A simple, clean and effective JDBC wrapper built on top of HikariCP

Setting up your project workspace

Maven

To integrate this library in your project using maven, add these to your pom.xml

  1. <repositories>
  2. <repository>
  3. <id>jitpack.io</id>
  4. <url>https://jitpack.io</url>
  5. </repository>
  6. </repositories>
  1. <dependency>
  2. <groupId>com.github.Huskehhh</groupId>
  3. <artifactId>MySQL</artifactId>
  4. <version>CHANGEME</version>
  5. </dependency>

Gradle

Add this to repositories

  1. maven {
  2. url = uri("https://jitpack.io")
  3. }

And add this to dependencies

  1. implementation("com.github.Huskehhh:MySQL:CHANGEME")

Note: it is assumed that mysql-connector-java is provided on the classpath.

If it is not, please also add

For Maven

  1. <dependency>
  2. <groupId>mysql</groupId>
  3. <artifactId>mysql-connector-java</artifactId>
  4. <version>VERSION</version>
  5. </dependency>

or for Gradle

  1. implementation("mysql:mysql-connector-java:VERSION")

Versions can be found here

Usage

Instantiate the MySQL wrapper.

  1. MySQL mysql = new MySQL(url, username, password);

Query

Sync & async functions are provided, depending on your use case.

Example sync query

  1. mysql.query("SELECT * from table WHERE id = 1;", results -> {
  2. if (results != null) {
  3. // Do something
  4. }
  5. });

Update

Example sync update

  1. int retval = mysql.update("INSERT INTO `whitelist` (`uuid`, `date_added`) VALUES ('"+uuid+"', CURRENT_DATE());")