Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Simple JDBC MySQL database wrapper for Java

License

NotificationsYou must be signed in to change notification settings

Huskehhh/MySQL

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Java CI with Gradle

A simple, clean and effective JDBC wrapper built on top ofHikariCP

Setting up your project workspace

Maven

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

<repositories>    <repository>        <id>jitpack.io</id>        <url>https://jitpack.io</url>    </repository></repositories>
<dependency>    <groupId>com.github.Huskehhh</groupId>    <artifactId>MySQL</artifactId>    <version>CHANGEME</version></dependency>

Gradle

Add this to repositories

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

And add this to dependencies

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

<dependency>    <groupId>mysql</groupId>    <artifactId>mysql-connector-java</artifactId>    <version>VERSION</version></dependency>

or for Gradle

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

Versions can be foundhere

Usage

Instantiate the MySQL wrapper.

MySQLmysql =newMySQL(url,username,password);

Query

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

Example sync query

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

Update

Example sync update

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

About

Simple JDBC MySQL database wrapper for Java

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors7

Languages


[8]ページ先頭

©2009-2025 Movatter.jp