Ðåôåðàòû. Àíàëèç òåêñòîâ íà çàèìñòâîâàíèå ìåòîäîì ïîñòðîåíèÿ ñåìàíòè÷åñêèõ ìîäåëåé

        public bool ClearBeforeFill {

            get {

                return this._clearBeforeFill;

            }

            set {

                this._clearBeforeFill = value;

            }

        }

       

        [System.Diagnostics.DebuggerNonUserCodeAttribute()]

        private void InitAdapter() {

            this._adapter = new System.Data.SqlClient.SqlDataAdapter();

            System.Data.Common.DataTableMapping tableMapping = new System.Data.Common.DataTableMapping();

            tableMapping.SourceTable = "Table";

            tableMapping.DataSetTable = "text_identities";

            tableMapping.ColumnMappings.Add("text_id", "text_id");

            tableMapping.ColumnMappings.Add("identity_id", "identity_id");

            this._adapter.TableMappings.Add(tableMapping);

            this._adapter.InsertCommand = new System.Data.SqlClient.SqlCommand();

            this._adapter.InsertCommand.Connection = this.Connection;

            this._adapter.InsertCommand.CommandText = "INSERT INTO [dbo].[text_identities] ([text_id], [identity_id]) VALUES (@text_id, " +

                "@identity_id)";

            this._adapter.InsertCommand.CommandType = System.Data.CommandType.Text;

            this._adapter.InsertCommand.Parameters.Add(new System.Data.SqlClient.SqlParameter("@text_id", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, 0, 0, "text_id", System.Data.DataRowVersion.Current, false, null, "", "", ""));

            this._adapter.InsertCommand.Parameters.Add(new System.Data.SqlClient.SqlParameter("@identity_id", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, 0, 0, "identity_id", System.Data.DataRowVersion.Current, false, null, "", "", ""));

        }

       

        [System.Diagnostics.DebuggerNonUserCodeAttribute()]

        private void InitConnection() {

            this._connection = new System.Data.SqlClient.SqlConnection();

            this._connection.ConnectionString = global::app.Properties.Settings.Default.adbConnectionString;

        }

       

        [System.Diagnostics.DebuggerNonUserCodeAttribute()]

        private void InitCommandCollection() {

            this._commandCollection = new System.Data.SqlClient.SqlCommand[1];

            this._commandCollection[0] = new System.Data.SqlClient.SqlCommand();

            this._commandCollection[0].Connection = this.Connection;

            this._commandCollection[0].CommandText = "SELECT text_id, identity_id FROM dbo.text_identities";

            this._commandCollection[0].CommandType = System.Data.CommandType.Text;

        }

       

        [System.Diagnostics.DebuggerNonUserCodeAttribute()]

        [System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]

        [System.ComponentModel.DataObjectMethodAttribute(System.ComponentModel.DataObjectMethodType.Fill, true)]

        public virtual int Fill(adbDataSet.text_identitiesDataTable dataTable) {

            this.Adapter.SelectCommand = this.CommandCollection[0];

            if ((this.ClearBeforeFill == true)) {

                dataTable.Clear();

            }

            int returnValue = this.Adapter.Fill(dataTable);

            return returnValue;

        }

       

        [System.Diagnostics.DebuggerNonUserCodeAttribute()]

        [System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]

        [System.ComponentModel.DataObjectMethodAttribute(System.ComponentModel.DataObjectMethodType.Select, true)]

        public virtual adbDataSet.text_identitiesDataTable GetData() {

            this.Adapter.SelectCommand = this.CommandCollection[0];

            adbDataSet.text_identitiesDataTable dataTable = new adbDataSet.text_identitiesDataTable();

            this.Adapter.Fill(dataTable);

            return dataTable;

        }

       

        [System.Diagnostics.DebuggerNonUserCodeAttribute()]

        [System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]

        public virtual int Update(adbDataSet.text_identitiesDataTable dataTable) {

            return this.Adapter.Update(dataTable);

        }

       

        [System.Diagnostics.DebuggerNonUserCodeAttribute()]

        [System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]

        public virtual int Update(adbDataSet dataSet) {

            return this.Adapter.Update(dataSet, "text_identities");

        }

       

        [System.Diagnostics.DebuggerNonUserCodeAttribute()]

        [System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]

        public virtual int Update(System.Data.DataRow dataRow) {

            return this.Adapter.Update(new System.Data.DataRow[] {

                        dataRow});

        }

       

        [System.Diagnostics.DebuggerNonUserCodeAttribute()]

        [System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]

        public virtual int Update(System.Data.DataRow[] dataRows) {

            return this.Adapter.Update(dataRows);

        }

       

        [System.Diagnostics.DebuggerNonUserCodeAttribute()]

        [System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]

        [System.ComponentModel.DataObjectMethodAttribute(System.ComponentModel.DataObjectMethodType.Insert, true)]

        public virtual int Insert(int text_id, int identity_id) {

            this.Adapter.InsertCommand.Parameters[0].Value = ((int)(text_id));

            this.Adapter.InsertCommand.Parameters[1].Value = ((int)(identity_id));

            System.Data.ConnectionState previousConnectionState = this.Adapter.InsertCommand.Connection.State;

            if (((this.Adapter.InsertCommand.Connection.State & System.Data.ConnectionState.Open)

                        != System.Data.ConnectionState.Open)) {

                this.Adapter.InsertCommand.Connection.Open();

            }

            try {

                int returnValue = this.Adapter.InsertCommand.ExecuteNonQuery();

                return returnValue;

            }

            finally {

                if ((previousConnectionState == System.Data.ConnectionState.Closed)) {

                    this.Adapter.InsertCommand.Connection.Close();

                }

            }

        }

    }

   

    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]

    [System.ComponentModel.DesignerCategoryAttribute("code")]

    [System.ComponentModel.ToolboxItem(true)]

    [System.ComponentModel.DataObjectAttribute(true)]

    [System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +

        ", Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]

    [System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]

    public partial class textsTableAdapter : System.ComponentModel.Component {

       

        private System.Data.SqlClient.SqlDataAdapter _adapter;

       

        private System.Data.SqlClient.SqlConnection _connection;

       

        private System.Data.SqlClient.SqlCommand[] _commandCollection;

       

        private bool _clearBeforeFill;

       

        [System.Diagnostics.DebuggerNonUserCodeAttribute()]

        public textsTableAdapter() {

            this.ClearBeforeFill = true;

        }

       

        [System.Diagnostics.DebuggerNonUserCodeAttribute()]

        private System.Data.SqlClient.SqlDataAdapter Adapter {

            get {

                if ((this._adapter == null)) {

                    this.InitAdapter();

                }

                return this._adapter;

            }

        }

       

        [System.Diagnostics.DebuggerNonUserCodeAttribute()]

        internal System.Data.SqlClient.SqlConnection Connection {

            get {

                if ((this._connection == null)) {

                    this.InitConnection();

                }

                return this._connection;

            }

            set {

                this._connection = value;

                if ((this.Adapter.InsertCommand != null)) {

                    this.Adapter.InsertCommand.Connection = value;

                }

                if ((this.Adapter.DeleteCommand != null)) {

                    this.Adapter.DeleteCommand.Connection = value;

                }

                if ((this.Adapter.UpdateCommand != null)) {

                    this.Adapter.UpdateCommand.Connection = value;

                }

                for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {

                    if ((this.CommandCollection[i] != null)) {

                        ((System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;

                    }

                }

            }

        }

       

        [System.Diagnostics.DebuggerNonUserCodeAttribute()]

        protected System.Data.SqlClient.SqlCommand[] CommandCollection {

            get {

                if ((this._commandCollection == null)) {

                    this.InitCommandCollection();

                }

                return this._commandCollection;

            }

        }

       

        [System.Diagnostics.DebuggerNonUserCodeAttribute()]

        public bool ClearBeforeFill {

            get {

                return this._clearBeforeFill;

            }

            set {

                this._clearBeforeFill = value;

            }

        }

       

        [System.Diagnostics.DebuggerNonUserCodeAttribute()]

        private void InitAdapter() {

Ñòðàíèöû: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42



2012 © Âñå ïðàâà çàùèùåíû
Ïðè èñïîëüçîâàíèè ìàòåðèàëîâ àêòèâíàÿ ññûëêà íà èñòî÷íèê îáÿçàòåëüíà.