コード例 #1
0
ファイル: ObjectSet.cs プロジェクト: armano2/fastdb
 /// <summary>
 /// Close object set. Any followin operation with this object set will raise an
 /// exception.
 /// </summary>
 ///
 public void close()
 {
     if (stmt == null) {
     throw new CliError("ObjectSet was aleady closed");
     }
     stmt = null;
 }
コード例 #2
0
ファイル: ObjectSet.cs プロジェクト: armano2/fastdb
 internal ObjectSet(Statement stmt, int nObjects)
 {
     this.stmt = stmt;
     this.nObjects = nObjects;
 }