You might have seen the recent news reports about the collision between U.S. and Russian communication satellites. The U.S. satellite was one of the Iridium satellites. What wasn’t reported and you probably don’t know is that an object database management system (ODBMS) is an important part of the Iridium system. Even though ODBMSs are a [...]
February 13, 2009
I am now also posting on the Cutter Blog. My initial posting is (The Acronym) SOA is (Perhaps) Dead (at Some Companies); Long Live Services. It is a response to Anne Thomas Manes’ SOA is Dead; Long Live Services on her blog at the Burton Group.
January 9, 2009
The typical definition of an atomic task or process is one that cannot be decomposed further. This is vague and subject to interpretation. The Decomposition Matrix on this site uses a specific definition: A task (for business process diagrams) or a process (for data flow diagrams) is atomic if every input relates to every output [...]
December 3, 2008
My last posting referenced the criteria for a well-formed business process diagram mentioned in Business Process Driven SOA using BPMN and BPEL by Matjaz B. Juric and Kapil Pant. I am going to expand on their criteria to create a more comprehensive definition of a well-formed business process diagram. To start, here are three criteria [...]
November 18, 2008
I recently received two new books on business process modeling. Both books looked interesting because they had great titles. As it turns out, one book is great and the other not so good. The not so good book is Business Process Driven SOA using BPMN and BPEL by Matjaz B. Juric and Kapil Pant. There [...]
October 9, 2008
The Design Decomposition Blog is written by Doug Barry.
This example uses the ODMG Java Binding and the ODMG Object Query Language (OQL).
Other query languages for object databases would be similar. Notice that all the
code is Java, with the exception of the query string. You will not find a
database sub-language in this example. The part in blue relates to the animation of transparent
persistence (new window). More
information on the ODMG specification (new
window). Note that the same code would used for object-relational
mapping products (new window).
Transparent persistent interfaces work with both object database or
object-relational mapping products.
import org.odmg.*;
import java.util.Collection;
Implementation impl = new com.vendor.odmg.Implementation();
Database db = impl.newDatabase();
Transaction txn = impl.newTransaction();
// perform query
OQLQuery query = new OQLQuery(
"select x from Person x where x.name = \"Doug Barry\"");
Collection result = (Collection) query.execute();
Iterator iter = result.iterator();
// iterate over the results
while ( iter.hasNext() )
{
Person person = (Person) iter.next();
// do some addition processing on the person (not shown)
// now traverse to the address object and update its value
person.address.street = "13504 4th Avenue South";
}
There are nearly 400 pages of articles on this site with over 50 pages on object-oriented database management systems.
Search this site for more articles
Custom Search
Browse this site for more articles
Click on the topics below to browse the articles on this site. You can see more detail by clicking on the arrows. This highlights the location of the current
article: Java and object databases.
Senior Java Software Developer Quest Search and Selection Good web development (html, JavaScript, css) and database (SQL, relational theory) skills. * Familiarity with unit testing techniques, in particular using JUnit. * Knowledge of the Spring framework (dependency injection, mvc, webflow, ... 3 Feb 2012 at 10:19am
Programming Opa: Web development, reimagined InfoWorld JavaScript, HTML, and CSS in the browser; PHP, Python, Java, Ruby, or the like on the server; MySQL, PostgreSQL, SQL Server, MongoDB, or any of a growing list of database servers as your persistent storage back-end. With Opa, an open source Web ... and more » 1 Feb 2012 at 5:06am
Oracle PartnerNetwork Provides Specialized Partners Strategies for Success at ... MarketWatch (press release) "We are excited to be participating in the Oracle Partner Executive Summit and to showcase the success we've had with the Oracle Database Appliance," said Jeff Harvey, CEO and Co-Founder, BIAS Corp. "We've found that the Oracle Database Appliance is ... and more » 3 Feb 2012 at 7:04am
WebLogic 12c Taking Java EE 6 to the Cloud InfoQ.com For messaging, Oracle WebLogic Server provides a high-performance, enterprise-grade Java Messaging Service infrastructure, including in-memory, file, database and Oracle AQ providers, advanced capabilities like unit-of-order, unit-of-work, ... and more » 27 Jan 2012 at 5:35am
Succeeding with Object Databases: A Practical Look at Today's Implementations with Java and XML by Akmal B. Chaudhri, Roberto Zicari Description: Take a tour with leading researchers and developers for a practical look at object databases. Whether you currently work with or are thinking of moving to object databases, Chaudhri and Zicari provide a collection of real-world case studies and examples that demonstrate how some of the world's leading companies and research institutions are leveraging Java, XML, and Object Relation...