1 package com.quantum.sql;
7 public class SQLUpdateResults extends SQLResults {
8 private int updateCount = 0;
10 public SQLUpdateResults(int updateCount) {
11 this.updateCount = updateCount;
14 public int getUpdateCount() {
15 return this.updateCount;
18 public boolean isResultSet() {