Exasol Database Fundamentals for Java
October 30, 2025 · View on GitHub
Base objects and ground rules for the Exasol database.
Features
- Base objects (e.g. Identifiers)
Table of Contents
In a Nutshell
final Identifier id = ExasolIdentifier.of("THE_SCHEMA"); // validates on construction
System.out.println("Schema name: " + id + ", quoted: " + id.quote());