//////////////////////////////////////////////////////////////////////////////////////////// // Public //////////////////////////////////////////////////////////////////////////////////////////// public void myInit() { // Setup the TransactionDataset this.tDataSet = new TransactionDataSet(); this.tDataSet.myInit(); // Setup this dataset this.lineTA = new LineItemTableAdapter(); this.lineTA.ClearBeforeFill = true; this.envelopeLineViewTA = new EnvelopeLineViewTableAdapter(); this.envelopeLineViewTA.ClearBeforeFill = true; this.LineItem.ColumnChanged += new System.Data.DataColumnChangeEventHandler(LineItem_ColumnChanged); this.LineItem.TableNewRow += new System.Data.DataTableNewRowEventHandler(LineItem_TableNewRow); this.stayOut = false; // Reference the tables in the transactionDataSet this.Account = this.tDataSet.Account; this.Envelope = this.tDataSet.Envelope; this.LineType = this.tDataSet.LineType; // Setup the error finder. this.e_Finder = new BackgroundWorker(); this.e_Finder.RunWorkerCompleted += new RunWorkerCompletedEventHandler(e_Finder_RunWorkerCompleted); this.e_Finder.DoWork += new DoWorkEventHandler(e_Finder_DoWork); }
///////////////////////// // Function Overrides public override void EndInit() { base.EndInit(); this.TableNewRow += new DataTableNewRowEventHandler(LineItemDataTable_TableNewRow); this.ColumnChanged += new DataColumnChangeEventHandler(LineItemDataTable_ColumnChanged); this.LineItemTA = new LineItemTableAdapter(); this.LineItemTA.ClearBeforeFill = true; this.newLineID = -1; this.stayOut = false; }
public void myInit() { // Initialize Table Adapters this.accountTypeTA = new AccountTypeTableAdapter(); this.accountTA = new AccountTableAdapter(); this.envelopeTA = new EnvelopeTableAdapter(); this.lineTypeTA = new LineTypeTableAdapter(); this.lineItemTA = new LineItemTableAdapter(); this.eLineTA = new EnvelopeLineTableAdapter(); // Initialize Maps this.accountMap = new Dictionary <string, int>(); this.envelopeMap = new Dictionary <string, int>(); // Fillup certain tables (Tables that can allow overlap of imported data) this.accountTypeTA.Fill(this.AccountType); this.lineTypeTA.Fill(this.LineType); // Setup ID Counters this.AccountID = DBquery.getNewID("id", "Account"); this.AccountTypeID = DBquery.getNewID("id", "AccountType"); this.EnvelopeID = DBquery.getNewID("id", "Envelope"); this.LineTypeID = DBquery.getNewID("id", "LineType"); this.LineItemID = DBquery.getNewID("id", "LineItem"); this.TransactionID = DBquery.getNewID("transactionID", "LineItem"); this.EnvelopeLineID = DBquery.getNewID("id", "EnvelopeLine"); // Subscribe to table events this.Account.TableNewRow += new System.Data.DataTableNewRowEventHandler(Account_TableNewRow); this.Account.ColumnChanging += new System.Data.DataColumnChangeEventHandler(ColumnChanging); this.AccountType.TableNewRow += new System.Data.DataTableNewRowEventHandler(AccountType_TableNewRow); this.AccountType.ColumnChanging += new System.Data.DataColumnChangeEventHandler(ColumnChanging); this.Envelope.TableNewRow += new System.Data.DataTableNewRowEventHandler(Envelope_TableNewRow); this.Envelope.ColumnChanging += new System.Data.DataColumnChangeEventHandler(ColumnChanging); this.EnvelopeLine.TableNewRow += new System.Data.DataTableNewRowEventHandler(EnvelopeLine_TableNewRow); this.EnvelopeLine.ColumnChanging += new System.Data.DataColumnChangeEventHandler(ColumnChanging); this.LineItem.TableNewRow += new System.Data.DataTableNewRowEventHandler(LineItem_TableNewRow); this.LineItem.ColumnChanging += new System.Data.DataColumnChangeEventHandler(ColumnChanging); this.LineType.TableNewRow += new System.Data.DataTableNewRowEventHandler(LineType_TableNewRow); this.LineType.ColumnChanging += new System.Data.DataColumnChangeEventHandler(ColumnChanging); }
public void stressFillDataBase() { stressDS = new StressDataSet(); rnd = new Random(); accountTypeTA = new AccountTypeTableAdapter(); lineTypeTA = new LineTypeTableAdapter(); envGroupTA = new EnvelopeGroupTableAdapter(); accountTA = new AccountTableAdapter(); envelopeTA = new EnvelopeTableAdapter(); lineTA = new LineItemTableAdapter(); envLineTA = new EnvelopeLineTableAdapter(); // Reset the database DBquery.dropTables(); DBquery.buildTables(); // Fill the data tables accountTypeTA.Fill(stressDS.AccountType); lineTypeTA.Fill(stressDS.LineType); envGroupTA.Fill(stressDS.EnvelopeGroup); accountTA.Fill(stressDS.Account); envelopeTA.Fill(stressDS.Envelope); lineTA.Fill(stressDS.LineItem); envLineTA.Fill(stressDS.EnvelopeLine); accountID = DBquery.getNewID("id", "Account"); aTypeID = DBquery.getNewID("id", "AccountType"); envelopeID = DBquery.getNewID("id", "Envelope"); eGroupID = DBquery.getNewID("id", "EnvelopeGroup"); eLineID = DBquery.getNewID("id", "EnvelopeLine"); lTypeID = DBquery.getNewID("id", "LineType"); lineID = DBquery.getNewID("id", "LineItem"); transID = DBquery.getNewID("transactionID", "LineItem"); date = DateTime.Now.AddMonths(-12 * 100).Date; addAccount(); addAccount(); addAccount(); addAccount(); addAccount(); addAccount(); addAccount(); addAccount(); addAccount(); addAccount(); addAccount(); addAccount(); addAccount(); addAccount(); addAccount(); addAccount(); addAccount(); addAccount(); addAccount(); addAccount(); addAccount(); addAccount(); addAccount(); addAccount(); addAccount(); addEnvelope(); addEnvelope(); addEnvelope(); addEnvelope(); addEnvelope(); addEnvelope(); addEnvelope(); addEnvelope(); addEnvelope(); addEnvelope(); addEnvelope(); addEnvelope(); addEnvelope(); addEnvelope(); addEnvelope(); addEnvelope(); addEnvelope(); addEnvelope(); addEnvelope(); addEnvelope(); addEnvelope(); addEnvelope(); addEnvelope(); addEnvelope(); addEnvelope(); addEnvelope(); int num; // Make alot of entries while (date < DateTime.Now.AddMonths(3).Date) { num = rnd.Next(0, 10000); if (num == 0) { addAccountType(); } else if (num == 1) { addLineType(); } else if (num == 2) { addEnvelopeGroup(); } if (10 < num && num < 15) { addAccount(); } if (30 < num && num < 34) { addEnvelope(); } if (100 < num && num < 200) { complexTrans(); } else { simpleTrans(); } } // Save the data accountTypeTA.Update(stressDS.AccountType); lineTypeTA.Update(stressDS.LineType); envGroupTA.Update(stressDS.EnvelopeGroup); accountTA.Update(stressDS.Account); envelopeTA.Update(stressDS.Envelope); lineTA.Update(stressDS.LineItem); envLineTA.Update(stressDS.EnvelopeLine); }