/// <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; }
internal ObjectSet(Statement stmt, int nObjects) { this.stmt = stmt; this.nObjects = nObjects; }