01: package simpleorm.data;
02:
03: public class DDataSet {
04: // do later
05: // public static DDataSet getThreaDDataSet() { return threaDDataSet.get(); }
06: // public void setThreaDDataSet() {
07: // if ( threaDDataSet.get() != null )
08: // throw new DException("Already has threaDDataSet " + threaDDataSet.get());
09: // threaDDataSet.set(this);
10: // }
11: // /** Normally called by close(), called in finally. */
12: // public static void clearThreaDDataSet() {threaDDataSet.set(null);}
13:
14: DConnection connection; // yes, the DataSet refers to the connection
15:
16: /////////////
17:
18: }
|