MySQL
Simple JDBC MySQL database wrapper for Java
Install / Use
/learn @Huskehhh/MySQLREADME
A simple JDBC wrapper
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
<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 found here
Usage
Instantiate the MySQL wrapper.
MySQL mysql = new MySQL(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
int retval = mysql.update("INSERT INTO `whitelist` (`uuid`, `date_added`) VALUES ('"+uuid+"', CURRENT_DATE());")
Related Skills
notion
352.5kNotion API for creating and managing pages, databases, and blocks.
feishu-drive
352.5k|
things-mac
352.5kManage Things 3 via the `things` CLI on macOS (add/update projects+todos via URL scheme; read/search/list from the local Things database)
clawhub
352.5kUse the ClawHub CLI to search, install, update, and publish agent skills from clawhub.com
