Esempio n. 1
0
 public static XmlSchemaComplexType GetTypedTableSchema(XmlSchemaSet xs)
 {
     XmlSchemaComplexType type2 = new XmlSchemaComplexType();
     XmlSchemaSequence sequence = new XmlSchemaSequence();
     DDIZDATAKDataSet set = new DDIZDATAKDataSet();
     xs.Add(set.GetSchemaSerializable());
     XmlSchemaAny item = new XmlSchemaAny {
         Namespace = "http://www.w3.org/2001/XMLSchema"
     };
     decimal num = new decimal(0);
     item.MinOccurs = num;
     item.MaxOccurs = 79228162514264337593543950335M;
     item.ProcessContents = XmlSchemaContentProcessing.Lax;
     sequence.Items.Add(item);
     XmlSchemaAny any2 = new XmlSchemaAny {
         Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1"
     };
     num = new decimal(1);
     any2.MinOccurs = num;
     any2.ProcessContents = XmlSchemaContentProcessing.Lax;
     sequence.Items.Add(any2);
     XmlSchemaAttribute attribute = new XmlSchemaAttribute {
         Name = "namespace",
         FixedValue = set.Namespace
     };
     type2.Attributes.Add(attribute);
     XmlSchemaAttribute attribute2 = new XmlSchemaAttribute {
         Name = "tableTypeName",
         FixedValue = "InvoiceDataTable"
     };
     type2.Attributes.Add(attribute2);
     type2.Particle = sequence;
     return type2;
 }
Esempio n. 2
0
 public virtual int Fill(DDIZDATAKDataSet dataSet, int dDIDIZDATAK)
 {
     if (!this.FillByDDIDIZDATAK(dataSet, dDIDIZDATAK))
     {
         throw new DDIZDATAKNotFoundException(string.Format(CultureInfo.InvariantCulture, this.resourceManager.GetString("inex"), new object[] { this.resourceManagerTables.GetString("DDIZDATAK") }));
     }
     return(0);
 }
Esempio n. 3
0
 public virtual int Fill(DataSet dataSet)
 {
     this.DDIZDATAKSet = (DDIZDATAKDataSet)dataSet;
     if (this.DDIZDATAKSet != null)
     {
         return(this.Fill(this.DDIZDATAKSet));
     }
     this.DDIZDATAKSet = new DDIZDATAKDataSet();
     this.Fill(this.DDIZDATAKSet);
     dataSet.Merge(this.DDIZDATAKSet);
     return(0);
 }
Esempio n. 4
0
 public static XmlSchemaComplexType GetTypedDataSetSchema(XmlSchemaSet xs)
 {
     DDIZDATAKDataSet set = new DDIZDATAKDataSet();
     XmlSchemaComplexType type2 = new XmlSchemaComplexType();
     XmlSchemaSequence sequence = new XmlSchemaSequence();
     xs.Add(set.GetSchemaSerializable());
     XmlSchemaAny item = new XmlSchemaAny {
         Namespace = set.Namespace
     };
     sequence.Items.Add(item);
     type2.Particle = sequence;
     return type2;
 }
Esempio n. 5
0
 public virtual int FillPage(DDIZDATAKDataSet dataSet, int startRow, int maxRows)
 {
     this.InitializeMembers();
     this.connDefault  = this.dsDefault.GetReadWriteConnection(this.daCurrentTransaction);
     this.DDIZDATAKSet = dataSet;
     try
     {
         this.LoadChildDdizdatak(startRow, maxRows);
         dataSet.AcceptChanges();
     }
     finally
     {
         this.Cleanup();
     }
     return(0);
 }
Esempio n. 6
0
 public virtual bool FillByDDIDIZDATAK(DDIZDATAKDataSet dataSet, int dDIDIZDATAK)
 {
     this.InitializeMembers();
     this.connDefault              = this.dsDefault.GetReadWriteConnection(this.daCurrentTransaction);
     this.DDIZDATAKSet             = dataSet;
     this.rowDDIZDATAK             = this.DDIZDATAKSet.DDIZDATAK.NewDDIZDATAKRow();
     this.rowDDIZDATAK.DDIDIZDATAK = dDIDIZDATAK;
     try
     {
         this.LoadByDDIDIZDATAK(0, -1);
         dataSet.AcceptChanges();
     }
     finally
     {
         this.Cleanup();
     }
     if (this.RcdFound163 == 0)
     {
         return(false);
     }
     return(true);
 }
Esempio n. 7
0
 public virtual int Fill(DDIZDATAKDataSet dataSet)
 {
     if (this.fillDataParameters != null)
     {
         this.Fill(dataSet, int.Parse(this.fillDataParameters[0].Value.ToString()));
     }
     else
     {
         try
         {
             this.InitializeMembers();
             this.connDefault  = this.dsDefault.GetReadWriteConnection(this.daCurrentTransaction);
             this.DDIZDATAKSet = dataSet;
             this.LoadChildDdizdatak(0, -1);
             dataSet.AcceptChanges();
         }
         finally
         {
             this.Cleanup();
         }
     }
     return(0);
 }
Esempio n. 8
0
        public virtual int Update(DataSet dataSet)
        {
            this.InitializeMembers();
            this.DDIZDATAKSet = (DDIZDATAKDataSet)dataSet;
            this.connDefault  = this.dsDefault.GetReadWriteConnection(this.daCurrentTransaction);
            if (this.DDIZDATAKSet == null)
            {
                throw new ArgumentException(this.resourceManager.GetString("nulldset"));
            }
            try
            {
                IEnumerator enumerator = null;
                this.connDefault.BeginTransaction();
                try
                {
                    enumerator = this.DDIZDATAKSet.DDIZDATAK.GetEnumerator();
                    while (enumerator.MoveNext())
                    {
                        DDIZDATAKDataSet.DDIZDATAKRow current = (DDIZDATAKDataSet.DDIZDATAKRow)enumerator.Current;
                        this.rowDDIZDATAK = current;
                        if (Helpers.IsRowChanged(this.rowDDIZDATAK))
                        {
                            this.ReadRowDdizdatak();
                            if (this.rowDDIZDATAK.RowState == DataRowState.Added)
                            {
                                this.InsertDdizdatak();
                            }
                            else
                            {
                                if (this._Gxremove)
                                {
                                    this.Delete();
                                    continue;
                                }
                                this.UpdateDdizdatak();
                            }
                        }
                    }
                }
                finally
                {
                    if (enumerator is IDisposable)
                    {
                        (enumerator as IDisposable).Dispose();
                    }
                }
                dataSet.AcceptChanges();
                this.connDefault.Commit();
            }
            catch (System.Exception exception1)
            {
                throw exception1;

                //this.connDefault.Rollback();
            }
            finally
            {
                this.Cleanup();
            }
            return(0);
        }
Esempio n. 9
0
 private void InitializeMembers()
 {
     this.DDIZDATAKSet = new DDIZDATAKDataSet();
     this.Initialize();
     this.dsDefault = new DataStore(new SqlServer2005Handler(), "System.Data.SqlClient", Configuration.ConnectionString, DeklaritTransaction.TransactionSlotName);
 }
Esempio n. 10
0
 public virtual int Fill(DDIZDATAKDataSet dataSet, IDataRecord dataRecord)
 {
     return(this.Fill(dataSet, Conversions.ToInteger(dataRecord["DDIDIZDATAK"])));
 }
Esempio n. 11
0
 public override DataSet Clone()
 {
     DDIZDATAKDataSet set = (DDIZDATAKDataSet) base.Clone();
     set.InitVars();
     return set;
 }