https://github.com/ferustech/basicsql
BasicSql wraps existing SQL utilities provided by Java and mchange to reduce repetitive task work.
https://github.com/ferustech/basicsql
java mysql sql utility
Last synced: 3 months ago
JSON representation
BasicSql wraps existing SQL utilities provided by Java and mchange to reduce repetitive task work.
- Host: GitHub
- URL: https://github.com/ferustech/basicsql
- Owner: FerusTech
- License: mit
- Created: 2017-04-20T22:19:25.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-01-16T22:11:31.000Z (about 8 years ago)
- Last Synced: 2025-06-04T17:42:58.704Z (10 months ago)
- Topics: java, mysql, sql, utility
- Language: Java
- Size: 151 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BasicSql [](https://travis-ci.org/FerusTech/BasicSql)
A utility for easily managing queries and executions to your database.
## Using BasicSql
View [Usage Examples](https://github.com/FerusTech/BasicSql/blob/master/basicsql-examples/src/main/java/tech/ferus/util/sql/examples/UsageExamples.java).
## Download
Latest Version: []()
Replace **TYPE** with `api`, `core`, `h2`, `mysql` or `sqlite`.
Replace **VERSION** with version shown in button above.
**Maven**
```xml
tech.ferus.util
basicsql-TYPE
VERSION
```
**Gradle**
```groovy
repositories {
mavenCentral()
}
dependencies {
compile 'tech.ferus.util:basicsql-TYPE:VERSION'
}
```
## Javadocs
Can be located [here](https://ferustech.github.io/BasicSql/).
## Dependencies
BasicSql _requires_ **Java 8**.
Dependencies are managed automatically via Gradle. For a detailed list, view below.
| Name | Version | Website | Repository |
| ---- | ------- | ------- | ---------- |
| SLF4J-API | 1.7.21 | https://www.slf4j.org/ | https://github.com/qos-ch/slf4j |
| FindBugs | 3.0.2 | http://findbugs.sourceforge.net/ | https://github.com/findbugsproject/findbugs |
| Connector/J | 6.0.5 | https://www.mysql.com/products/connector/ | https://dev.mysql.com/downloads/connector/j/5.1.html |
| SQLite-JDBC | 3.18.0 | https://bitbucket.org/xerial/sqlite-jdbc | https://bitbucket.org/xerial/sqlite-jdbc |
| H2 | 1.4.195 | http://www.h2database.com | https://github.com/h2database/h2database |
| C3P0 | 0.9.5.2 | http://www.mchange.com/projects/c3p0/ | https://github.com/swaldman/c3p0 |