コード例 #1
0
 public virtual DataSet.LVLDataTable GetDataById(long Id) {
     this.Adapter.SelectCommand = this.CommandCollection[1];
     this.Adapter.SelectCommand.Parameters[0].Value = ((long)(Id));
     DataSet.LVLDataTable dataTable = new DataSet.LVLDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }
コード例 #2
0
 public virtual DataSet.LVLDataTable GetData() {
     this.Adapter.SelectCommand = this.CommandCollection[0];
     DataSet.LVLDataTable dataTable = new DataSet.LVLDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }