d

dbvolution

Advanced Library to Remove Object Relational Impedance. DBvolution translates all database concepts into Object Oriented concepts, allowing you to spend all your time writing Java rather than fixing broken and awkward SQL. DBvolution transforms your schema into classes, reduces the database configuration to sparse annotations on the classes, and allows querying directly from the classes. Queries are created inside your java code and takes as little as one line for a multi-table outer join. Retrieving the rows from the query is only one more method call. Dozens of SQL functions are available without leaving your Java code and use chaining to build complex expressions easily. Transactions are encapsulated into a thread-like API, allowing you to write complex database interactions in complete safety. The actions performed by DBvolution are always available for debugging and checking by DBAs before release. There are examples in nz.co.gregs.dbvolution.examples, and documentation at http://dbvolution.gregs.co.nz and http://sourceforge.net/p/dbvolution/blog/
http://dbvolution.gregs.co.nz
Non-commercial License
Gregory Graham
Files download
File Operation
dbvolution-1.0.5.jar download
dbvolution-1.0.5.pom download
dbvolution-1.0.5-sources.jar download
Apache Maven
<dependency>
  <groupId>nz.co.gregs</groupId>
  <artifactId>dbvolution</artifactId>
  <version>1.0.5</version>
</dependency>
Gradle Groovy
implementation 'nz.co.gregs:dbvolution:1.0.5'
Gradle Kotlin
implementation("nz.co.gregs:dbvolution:1.0.5")
Scala SBT
libraryDependencies += "nz.co.gregs" % "dbvolution" % "1.0.5"
Groovy Grape
@Grapes(
  @Grab(group='nz.co.gregs', module='dbvolution', version='1.0.5')
)
Apache Ivy
<dependency org="nz.co.gregs" name="dbvolution" rev="1.0.5" />
Leiningen
[nz.co.gregs/dbvolution "1.0.5"]
Apache Buildr
'nz.co.gregs:dbvolution:jar:1.0.5'