- Notifications
You must be signed in to change notification settings - Fork51
Simple JDBC MySQL database wrapper for Java
License
NotificationsYou must be signed in to change notification settings
Huskehhh/MySQL
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
A simple, clean and effective JDBC wrapper built on top ofHikariCP
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>
Add this to repositories
maven { url= uri("https://jitpack.io")}And add this to dependencies
implementation("com.github.Huskehhh:MySQL:CHANGEME")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
MySQLmysql =newMySQL(url,username,password);
Sync & async functions are provided, depending on your use case.
mysql.query("SELECT * from table WHERE id = 1;",results -> {if (results !=null) {// Do something }});
intretval =mysql.update("INSERT INTO `whitelist` (`uuid`, `date_added`) VALUES ('"+uuid+"', CURRENT_DATE());")
About
Simple JDBC MySQL database wrapper for Java
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
No packages published
Uh oh!
There was an error while loading.Please reload this page.
Contributors7
Uh oh!
There was an error while loading.Please reload this page.