Skip to content
#

jdx-orm

Here are 7 public repositories matching this topic...

Like JDX_ReverseEngineeringExample but generates JSON-capable container classes extending JDX_JSONObject instead of POJOs, and produces a JSON-aware .revjdx mapping using VIRTUAL_ATTRIB. Compatible with JDX ORM, Gilhari ORM, and MCP server deployments.

  • Updated Apr 7, 2026
  • Java

Shows how JDX ORM calls stored procedures via storedProc and maps results back to Java objects or scalar values. Five stored procedures are demonstrated: returning object lists, filtered objects, a count, an update count, and a computed scalar — all declared in the .jdx mapping file. This example uses MySQL stored procedures.

  • Updated Apr 6, 2026
  • Java

Introduces JDX ORM JSON-based persistence: a JSON_Employee class extends JDX_JSONObject with only two constructors; all attribute storage uses the JSONObject API. The ORM mapping uses VIRTUAL_ATTRIB declarations. Employees can be built from put calls, a JSONObject, or a raw JSON string.

  • Updated Apr 11, 2026
  • Java

Demonstrates JDX ORM object streaming — retrieving large query results in incremental batches using QFLAG_STREAM, queryFetch, and queryClose rather than loading everything into memory at once. Must be run inside a transaction; shows both a full-table stream and a filtered, ordered stream.

  • Updated Apr 6, 2026
  • Java

Shows how JDX ORM named sequence generators SEQUENCE / JDXSeqUtil produce persistently unique, application-managed primary key values across application restarts. Uses DeptIdSequence and EmpIdSequence with configurable MAX_INCREMENT and START_WITH parameters.

  • Updated Apr 6, 2026
  • Java

Demonstrates JDX ORM reverse engineering: given a template config pointing at MySQL Sakila tables film, film_actor, film_category, the tool auto-generates Java POJO classes with getters/setters and a complete .revjdx ORM mapping file. Generated output can be compiled and used immediately with JDXDemo.

  • Updated Apr 6, 2026
  • Java

Demonstrates JDX ORM one-to-one and one-to-many object relationships — Company → Departments & ForeignLocations, Employee → Address. Shows deep/shallow CRUD, lazy fetch, named queries, directed operations, batch inserts, and implicit foreign-key management.

  • Updated Apr 6, 2026
  • Java

Improve this page

Add a description, image, and links to the jdx-orm topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the jdx-orm topic, visit your repo's landing page and select "manage topics."

Learn more