Ejemplo n.º 1
0
 public virtual UA_StageDataSet.UserDataTable GetData()
 {
     this.Adapter.SelectCommand = this.CommandCollection[0];
     UA_StageDataSet.UserDataTable dataTable = new UA_StageDataSet.UserDataTable();
     this.Adapter.Fill(dataTable);
     return(dataTable);
 }
Ejemplo n.º 2
0
        public virtual int Fill(UA_StageDataSet.UserDataTable dataTable)
        {
            this.Adapter.SelectCommand = this.CommandCollection[0];
            if ((this.ClearBeforeFill == true))
            {
                dataTable.Clear();
            }
            int returnValue = this.Adapter.Fill(dataTable);

            return(returnValue);
        }
Ejemplo n.º 3
0
 public virtual int Update(UA_StageDataSet.UserDataTable dataTable)
 {
     return(this.Adapter.Update(dataTable));
 }