示例#1
0
文件: Result.cs 项目: cwdotson/FwNs
 public void SetDataResultProperties(int maxRows, int fetchSize, int resultSetScrollability, int resultSetConcurrency, int resultSetHoldability)
 {
     this.UpdateCount  = maxRows;
     this._fetchSize   = fetchSize;
     this.RsProperties = ResultProperties.GetValueForAdo(resultSetScrollability, resultSetConcurrency, resultSetHoldability);
 }