This is an automated email from the ASF dual-hosted git repository.
doebele pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/empire-db.git
The following commit(s) were added to refs/heads/master by this push:
new 173669ac updated readme
173669ac is described below
commit 173669acd81b968ece6a0577a47081d3dd15f2da
Author: Rainer Döbele <[email protected]>
AuthorDate: Thu May 18 12:03:54 2023 +0200
updated readme
---
README.txt | 18 +++++++++++-------
1 file changed, 11 insertions(+), 7 deletions(-)
diff --git a/README.txt b/README.txt
index c282ab29..39f33329 100644
--- a/README.txt
+++ b/README.txt
@@ -1,17 +1,21 @@
About Empire-DB
===============
-The mission of Apache Empire-db is to provide an alternative approach to
relational
-database access compared to Object-Relational-Mapping (ORM) as offered by JDO
and JPA.
+Empire-db is a lightweight relational database access library for JAVA dealing
with all
+aspects of storing, manipulating, retrieving and modelling data in Relational
+Database Management Systems (RDBMS).
+
+As an alternative to traditional Object-Relational-Mapping (ORM) solutions
like JDO and JPA,
+it provides an SQL centric, no-compromise approach that uses a
Java-Object-Model
+rather than Mapping Files or Annotations.
Apache Empire-db is intended for developers who strive to have full SQL
freedom when
formulating queries and DML-Statements - without ever having to use string
literals -
-and who also wants to be able to control when and how statements are executed.
+and who also want to be able to control when and how statements are executed.
-Unlike other approaches, Empire-db does not rely on Java Annotations or
Mapping-files
-for building queries but rather uses a Java Object model that is easy to
access and
-extend. For Data Access and Data Interchange, developers can choose between
traditional
-Java Beans and a more sophisticated dynamic interface are provided by Record
and DataListEntries.
+Apache Empire-db also deals with all aspects of creating, reading, updating
and deleting
+records such as identity management and concurrency control (aka optimistic
locking)
+in a easy to use, DMBS independed way.
Empire-db is DBMS vendor independent and provides handlers for Oracle,
Microsoft SQLServer,
PostgreSQL, MySQL, HsqlDB, Derby, H2 and more.