Author: doebele
Date: Fri Mar  4 08:10:22 2022
New Revision: 1898583

URL: http://svn.apache.org/viewvc?rev=1898583&view=rev
Log: (empty)

Modified:
    empire-db/site/preview-v3/pages/community.html
    empire-db/site/preview-v3/pages/home.html
    empire-db/site/preview-v3/pages/project.html

Modified: empire-db/site/preview-v3/pages/community.html
URL: 
http://svn.apache.org/viewvc/empire-db/site/preview-v3/pages/community.html?rev=1898583&r1=1898582&r2=1898583&view=diff
==============================================================================
--- empire-db/site/preview-v3/pages/community.html (original)
+++ empire-db/site/preview-v3/pages/community.html Fri Mar  4 08:10:22 2022
@@ -144,8 +144,10 @@
 
                        <h3>GIT - Source code repository</h3>
 
-                       <div>The Empire-db source code is also availabe from 
our GIT Repository</div>
+                       <div>The Empire-db source code is availabe from our GIT 
Repository</div>
                        <p><div class="info-box"><a class="extern" 
target="_blank" 
href="https://gitbox.apache.org/repos/asf/empire-db.git";>https://gitbox.apache.org/repos/asf/empire-db.git</a></div></p>
+                       <div>or from our Github mirror</div>
+                       <p><div class="info-box"><a class="extern" 
target="_blank" 
href="https://github.com/apache/empire-db";>https://github.com/apache/empire-db</a></div></p>
 
                        <h3>JIRA - Ticketing system</h3>
 

Modified: empire-db/site/preview-v3/pages/home.html
URL: 
http://svn.apache.org/viewvc/empire-db/site/preview-v3/pages/home.html?rev=1898583&r1=1898582&r2=1898583&view=diff
==============================================================================
--- empire-db/site/preview-v3/pages/home.html (original)
+++ empire-db/site/preview-v3/pages/home.html Fri Mar  4 08:10:22 2022
@@ -143,7 +143,7 @@
                                <li>Forget OR-Mapping, Entity Beans, Lazy vs 
Eager, Bytecode Proxies, TupleQuery and black box magic and reclaim your full 
SQL freedom.</li>
                                <li>No Annotation madness, No Mapping-File 
pain, No fancy stuff to represent your data model. Just simple old, plain old 
Java API.</li>
                                <li>Create even the most complex SQL in code in 
the simplest and most intuitive way, with "No Strings attached" 
(literally!)</li>
-                               <li>Improve Compile-Time-Safety and code 
maintainability. Write DMBS independent code. Benefit from Identity-management 
and concurrency control. Perform DDL operations. Access Metadata. You name 
it…</li>
+                               <li>Improve Compile-Time-Safety and code 
maintainability. Write DBMS independent code. Benefit from Identity-management 
and concurrency control. Perform DDL operations. Access Metadata. You name 
it…</li>
                                <li>Clever Object Model lets you customize and 
extend almost every aspect of its API by simple subclassing and overriding. No 
rocket science!</li>
                                <li>100% Open-Source. 100% Free. Lightweight 
and straightforward.</li>
                                <li>Support for Oracle, SQLServer, PostgreSQL, 
MySql, HsqlDB, Derby, H2 and more…</li>

Modified: empire-db/site/preview-v3/pages/project.html
URL: 
http://svn.apache.org/viewvc/empire-db/site/preview-v3/pages/project.html?rev=1898583&r1=1898582&r2=1898583&view=diff
==============================================================================
--- empire-db/site/preview-v3/pages/project.html (original)
+++ empire-db/site/preview-v3/pages/project.html Fri Mar  4 08:10:22 2022
@@ -150,7 +150,7 @@
                        <div class="layout2col">
                                <div class="col-left">
 
-                                       <p>The most common approach for DMBS 
access is called <a class="extern" target="_blank" 
href="https://en.wikipedia.org/wiki/Object%E2%80%93relational_mapping";>Object-Relational-Mapping</a>
 (ORM) which essentially maps database tables to java classes and table columns 
to class properties or fields. 
+                                       <p>The most common approach for DBMS 
access is called <a class="extern" target="_blank" 
href="https://en.wikipedia.org/wiki/Object%E2%80%93relational_mapping";>Object-Relational-Mapping</a>
 (ORM) which essentially maps database tables to java classes and table columns 
to class properties or fields. 
                                        ORM implementations are mostly built on 
the standards <a class="extern" target="_blank" 
href="https://en.wikipedia.org/wiki/Java_Data_Objects";>JDO</a> and <a 
class="extern" target="_blank" 
href="https://www.ibm.com/docs/en/was-liberty/base?topic=overview-java-persistence-api-jpa";>JPA</a>
 
                                        and there are many available products 
such as <a class="extern" target="_blank" 
href="https://hibernate.org/";>Hibernate</a>, <a class="extern" target="_blank" 
href="https://openjpa.apache.org/";>OpenJPA</a>, <a class="extern" 
target="_blank" href="https://cayenne.apache.org/";>Cayenne</a> and <a 
class="extern" target="_blank" 
href="https://en.wikipedia.org/wiki/List_of_object%E2%80%93relational_mapping_software#Java";>more</a>.</p>
                                        
@@ -195,7 +195,7 @@
                        <p>Compare what your current data persistence solution 
with what Empire-db has to offer.</p>
                        
                        <h3>Building queries</h3>
-                       <p>The query building engine is the heart of Empire-db. 
Empire-db can build DQL, DML and DDL statements in the "flavour" of the DMBS 
used.</p>
+                       <p>The query building engine is the heart of Empire-db. 
Empire-db can build DQL, DML and DDL statements in the "flavour" of the DBMS 
used.</p>
                        <table class="features">
                                <colgroup>
                                        <col class="feature">
@@ -212,7 +212,7 @@
                                                        <li>Joining of entity 
types using any type of join constraints, not just Foreign-Key relations</li>
                                                        <li>Joining with 
subqueries in any depth</li>
                                                        <li>Where constraints 
with column functions, logical combinations (and / or), subqueries, etc.</li>
-                                                       <li>Limit and offset 
(skipping) Rows in the query result, independent from whether directly 
supported by DMBS or not</li>
+                                                       <li>Limit and offset 
(skipping) Rows in the query result, independent from whether directly 
supported by DBMS or not</li>
                                                </ul>
                                                <!-- example -->
                                                <div><a class="showMe">Give me 
an example</a></div>
@@ -301,7 +301,7 @@
                                                <div><a class="showMe">Give me 
an example</a></div>
                                                <!-- start content-box -->
                                                <div class="content-box 
optional">
-                                               <p>This is an example of an 
update statement that also contains a join. Please note the difference in DMBS 
syntax between SQL-Server, PostgreSQL and Oracle.</p>
+                                               <p>This is an example of an 
update statement that also contains a join. Please note the difference in DBMS 
syntax between SQL-Server, PostgreSQL and Oracle.</p>
                                                <!-- content-box -->
                                                <div class="codebox">
                                                <div class="title">Java</div>
@@ -508,7 +508,7 @@ log.<span class="func">info</span>(<span
                                <tr><td class="feature">Java Beans (POJOs)</td>
                                        <td class="description content-block">
                                                <div class="feature">Java Beans 
(POJOs)</div>                   
-                                               <p>Traditional Java-Benas can 
be used to hold query results and exchange data with records in both 
directions</p>
+                                               <p>Traditional Java-Beans can 
be used to hold query results and exchange data with records in both 
directions.</p>
                                                <div><a class="showMe">Give me 
some examples</a></div>
                                                <div class="codebox optional">
 <pre>


Reply via email to