Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/exasol/db-fundamentals-java
Base objects and ground rules for Exasol
https://github.com/exasol/db-fundamentals-java
exasol exasol-integration foundation-library java
Last synced: about 2 months ago
JSON representation
Base objects and ground rules for Exasol
- Host: GitHub
- URL: https://github.com/exasol/db-fundamentals-java
- Owner: exasol
- License: mit
- Created: 2020-06-08T05:03:41.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-31T14:14:16.000Z (over 2 years ago)
- Last Synced: 2024-04-16T18:50:23.136Z (9 months ago)
- Topics: exasol, exasol-integration, foundation-library, java
- Language: Java
- Homepage:
- Size: 55.7 KB
- Stars: 0
- Watchers: 10
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Exasol Database Fundamentals for Java
[![Build Status](https://github.com/exasol/db-fundamentals-java/actions/workflows/ci-build.yml/badge.svg)](https://github.com/exasol/db-fundamentals-java/actions/workflows/ci-build.yml)
[![Maven Central – Exasol Database fundamentals for Java](https://img.shields.io/maven-central/v/com.exasol/db-fundamentals-java)](https://search.maven.org/artifact/com.exasol/db-fundamentals-java)[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=com.exasol%3Adb-fundamentals-java&metric=alert_status)](https://sonarcloud.io/dashboard?id=com.exasol%3Adb-fundamentals-java)
[![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=com.exasol%3Adb-fundamentals-java&metric=security_rating)](https://sonarcloud.io/dashboard?id=com.exasol%3Adb-fundamentals-java)
[![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=com.exasol%3Adb-fundamentals-java&metric=reliability_rating)](https://sonarcloud.io/dashboard?id=com.exasol%3Adb-fundamentals-java)
[![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=com.exasol%3Adb-fundamentals-java&metric=sqale_rating)](https://sonarcloud.io/dashboard?id=com.exasol%3Adb-fundamentals-java)
[![Technical Debt](https://sonarcloud.io/api/project_badges/measure?project=com.exasol%3Adb-fundamentals-java&metric=sqale_index)](https://sonarcloud.io/dashboard?id=com.exasol%3Adb-fundamentals-java)[![Code Smells](https://sonarcloud.io/api/project_badges/measure?project=com.exasol%3Adb-fundamentals-java&metric=code_smells)](https://sonarcloud.io/dashboard?id=com.exasol%3Adb-fundamentals-java)
[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=com.exasol%3Adb-fundamentals-java&metric=coverage)](https://sonarcloud.io/dashboard?id=com.exasol%3Adb-fundamentals-java)
[![Duplicated Lines (%)](https://sonarcloud.io/api/project_badges/measure?project=com.exasol%3Adb-fundamentals-java&metric=duplicated_lines_density)](https://sonarcloud.io/dashboard?id=com.exasol%3Adb-fundamentals-java)
[![Lines of Code](https://sonarcloud.io/api/project_badges/measure?project=com.exasol%3Adb-fundamentals-java&metric=ncloc)](https://sonarcloud.io/dashboard?id=com.exasol%3Adb-fundamentals-java)Base objects and ground rules for the Exasol database.
## Features
* Base objects (e.g. Identifiers)
## Table of Contents
### In a Nutshell
```java
final Identifier id = ExasolIdentifier.of("THE_SCHEMA"); // validates on construction
System.out.println("Schema name: " + id + ", quoted: " + id.quote());
```### Information for Users
* [User Guide](doc/user_guide/user_guide.md)
* [Changelog](doc/changes/changelog.md)
* [Dependencies](dependencies.md)