.NET
jproxy.txt
Associated article: Java Proxies for Database Objects
Tags: .NET
Published source code accompanying the article by Paul Lipton in which he discusses Java proxy technology, which lets you define database object schema using the database ODL. To illustrate how such a technology might be implemented, Paul provides examples based on the Jasmine object-oriented database.
Java Proxies for Database Objects
by Paul Lipton
Example 1:
public DBObject createDBObject(String classFamilyName,
String className) throws DatabaseException
Listing One
// Machine generated
package jp.jasmine.CAStore;
import jp.jasmine.japi.*;
import java.math.BigDecimal;
import java.sql.Date;
import java....


