Example #1
0
 protected void FillDataSet()
 {
     DbUtil.FillDataSet(this, fDataAdapter, HostDataSet, TableName);
 }
Example #2
0
 public TableSelector(string tableName, string keyFields, string fields, IDbDataSource source)
     : this(DbUtil.CreateTableScheme(tableName, keyFields, fields, source.Context), source, false)
 {
 }
Example #3
0
 private DataRow TrySelectRow(Action action)
 {
     return(DbUtil.TrySelectRow(action, HostDataSet, TableName));
 }