DOC

nz.co.gregs : dbvolution7

Maven & Gradle

Dec 20, 2021
1 stars

DBvolution 7 · 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.

Table Of Contents

Latest Version

Download nz.co.gregs : dbvolution7 Javadoc & API Documentation - Latest Versions:

All Versions

Download nz.co.gregs : dbvolution7 Javadoc & API Documentation - All Versions:

Version Size Javadoc Updated
1.0.x
0.9.x

How to open Javadoc JAR file in web browser

  1. Rename the file dbvolution7-1.0.0-javadoc.jar to dbvolution7-1.0.0-javadoc.zip
  2. Use your favourite unzip tool (WinRAR / WinZIP) to extract it, now you have a folder dbvolution7-1.0.0-javadoc
  3. Double click index.html will open the index page on your default web browser.

How to generate Javadoc from a source JAR?

Running the command javadoc:

javadoc --ignore-source-errors -encoding UTF-8 -sourcepath "dbvolution7-1.0.0-sources.jar" -d "dbvolution7-1.0.0-javadoc" -subpackages 

Advertisement