d

dbvolution7

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 queries 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.
http://dbvolution.gregs.co.nz
Commercial License Non-commercial License
Gregory Graham
Gregory Graham
Files download
File Operation
dbvolution7-1.0.0.jar download
dbvolution7-1.0.0.pom download
dbvolution7-1.0.0-sources.jar download
Apache Maven
<dependency>
  <groupId>nz.co.gregs</groupId>
  <artifactId>dbvolution7</artifactId>
  <version>1.0.0</version>
</dependency>
Gradle Groovy
implementation 'nz.co.gregs:dbvolution7:1.0.0'
Gradle Kotlin
implementation("nz.co.gregs:dbvolution7:1.0.0")
Scala SBT
libraryDependencies += "nz.co.gregs" % "dbvolution7" % "1.0.0"
Groovy Grape
@Grapes(
  @Grab(group='nz.co.gregs', module='dbvolution7', version='1.0.0')
)
Apache Ivy
<dependency org="nz.co.gregs" name="dbvolution7" rev="1.0.0" />
Leiningen
[nz.co.gregs/dbvolution7 "1.0.0"]
Apache Buildr
'nz.co.gregs:dbvolution7:jar:1.0.0'