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

            return(returnValue);
        }
Esempio n. 3
0
 public virtual int Update(DsComposer.ComposerDataTable dataTable)
 {
     return(this.Adapter.Update(dataTable));
 }