User: fleury
Date: 00/11/17 11:43:53
Modified: business jboss-jaws.html
Log:
ordering fixed
Revision Changes Path
1.2 +8 -8 newsite/business/jboss-jaws.html
Index: jboss-jaws.html
===================================================================
RCS file: /products/cvs/ejboss/newsite/business/jboss-jaws.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- jboss-jaws.html 2000/11/17 02:29:25 1.1
+++ jboss-jaws.html 2000/11/17 19:43:53 1.2
@@ -19,9 +19,7 @@
</tr>
<tr>
<td class="newsbody"><font
face="Arial,Helvetica,sans-serif"><img src="../pictures/jaws.jpg"><br>
- The Minerva JDBC connection pooling module has been added to the
codebase,
- thanks to Aaron Mulder. This module complements JAWS by adding a
pluggable
- connection pooling mechanism.</font>
+ </font>
<p>During development of jBoss/Server version 1.0 (then known as
EJBoss),
our team recognized the need for an object-to-relational (O-R)
mapping
tool. Enter JAWS, the acronym for "Just Another Web Storage," an
@@ -35,13 +33,15 @@
the jBoss/JAWS project and contribute to the coolest O-R mapping
open source project around. We encourage you to view the jBoss/JAWS
mail archives. </p>
- <p><a href="../minerva/index.html"><font
face="Arial,Helvetica,sans-serif">View
- the Minerva JavaDocs</font></a></p>
- <p><font face="Myriad
Web,Arial">Get a feature list of the project as a whole (under
construction)</font></p>
- <p></td>
+ <p><font face="Arial,Helvetica,sans-serif">The Minerva JDBC connection
+ pooling module has been added to the codebase, thanks to Aaron
Mulder.
+ This module complements JAWS by adding a pluggable connection pooling
+ mechanism.</font> </p>
+ </td>
</tr>
<tr>
- <td class="newsheader"><b>What
is O/R Mapping?</b></td>
+
+ <td class="newsheader"><b>What is O/R Mapping?</b></td>
</tr>
<tr>
<td class="newsbody">O-R
mapping technology grew out of the differences between how object-oriented languages
represent objects in memory and how relational databases store data on disk. Objects
in the Java language might contain only primitive data types such as int, double, and
very simple aggregate objects such as String, making it very easy to express the
object's layout on disk. In the case of storing such a simple object in a flat disk
file, you would just write each primitive data type variable and each String object in
their string form sequentially into the flat file. As you can imagine, reading such
objects back from disk into a memory-based object would be just as easy. However, what
about storing more complex objects such as those that contain other objects that
contain yet other objects? And what about storing both simple and complex objects into
relational databases?<p>