www.pudn.com > SMSTemplateApp.zip > TemplateDbDataSet.Designer.cs


//------------------------------------------------------------------------------ 
//  
//     This code was generated by a tool. 
//     Runtime Version:2.0.50727.1433 
// 
//     Changes to this file may cause incorrect behavior and will be lost if 
//     the code is regenerated. 
//  
//------------------------------------------------------------------------------ 
 
//  
// This source code was auto-generated by Microsoft.CompactFramework.Design.Data, Version 2.0.50727.1433. 
//  
namespace SMSTemplateApp { 
    using System; 
    using System.Data; 
     
     
    ///  
    ///Represents a strongly typed in-memory cache of data. 
    /// 
    [global::System.ComponentModel.DesignerCategoryAttribute("code")] 
    [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedDataSetSchema")] 
    [global::System.Xml.Serialization.XmlRootAttribute("TemplateDbDataSet")] 
    public partial class TemplateDbDataSet : global::System.Data.DataSet { 
         
        private SMSTemplateDataTable tableSMSTemplate; 
         
        private global::System.Data.SchemaSerializationMode _schemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema; 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        public TemplateDbDataSet() { 
            this.BeginInit(); 
            this.InitClass(); 
            global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged); 
            base.Tables.CollectionChanged += schemaChangedHandler; 
            base.Relations.CollectionChanged += schemaChangedHandler; 
            this.EndInit(); 
        } 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        public SMSTemplateDataTable SMSTemplate { 
            get { 
                return this.tableSMSTemplate; 
            } 
        } 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        public override global::System.Data.SchemaSerializationMode SchemaSerializationMode { 
            get { 
                return this._schemaSerializationMode; 
            } 
            set { 
                this._schemaSerializationMode = value; 
            } 
        } 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        public new global::System.Data.DataTableCollection Tables { 
            get { 
                return base.Tables; 
            } 
        } 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        public new global::System.Data.DataRelationCollection Relations { 
            get { 
                return base.Relations; 
            } 
        } 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        protected override void InitializeDerivedDataSet() { 
            this.BeginInit(); 
            this.InitClass(); 
            this.EndInit(); 
        } 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        public override global::System.Data.DataSet Clone() { 
            TemplateDbDataSet cln = ((TemplateDbDataSet)(base.Clone())); 
            cln.InitVars(); 
            cln.SchemaSerializationMode = this.SchemaSerializationMode; 
            return cln; 
        } 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        protected override bool ShouldSerializeTables() { 
            return false; 
        } 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        protected override bool ShouldSerializeRelations() { 
            return false; 
        } 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        protected override void ReadXmlSerializable(global::System.Xml.XmlReader reader) { 
            if ((this.DetermineSchemaSerializationMode(reader) == global::System.Data.SchemaSerializationMode.IncludeSchema)) { 
                this.Reset(); 
                global::System.Data.DataSet ds = new global::System.Data.DataSet(); 
                ds.ReadXml(reader); 
                if ((ds.Tables["SMSTemplate"] != null)) { 
                    base.Tables.Add(new SMSTemplateDataTable(ds.Tables["SMSTemplate"])); 
                } 
                this.DataSetName = ds.DataSetName; 
                this.Prefix = ds.Prefix; 
                this.Namespace = ds.Namespace; 
                this.Locale = ds.Locale; 
                this.CaseSensitive = ds.CaseSensitive; 
                this.EnforceConstraints = ds.EnforceConstraints; 
                this.Merge(ds, false, global::System.Data.MissingSchemaAction.Add); 
                this.InitVars(); 
            } 
            else { 
                this.ReadXml(reader); 
                this.InitVars(); 
            } 
        } 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        protected override global::System.Xml.Schema.XmlSchema GetSchemaSerializable() { 
            global::System.IO.MemoryStream stream = new global::System.IO.MemoryStream(); 
            this.WriteXmlSchema(new global::System.Xml.XmlTextWriter(stream, null)); 
            stream.Position = 0; 
            return global::System.Xml.Schema.XmlSchema.Read(new global::System.Xml.XmlTextReader(stream), null); 
        } 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        internal void InitVars() { 
            this.InitVars(true); 
        } 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        internal void InitVars(bool initTable) { 
            this.tableSMSTemplate = ((SMSTemplateDataTable)(base.Tables["SMSTemplate"])); 
            if ((initTable == true)) { 
                if ((this.tableSMSTemplate != null)) { 
                    this.tableSMSTemplate.InitVars(); 
                } 
            } 
        } 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        private void InitClass() { 
            this.DataSetName = "TemplateDbDataSet"; 
            this.Prefix = ""; 
            this.Namespace = "http://tempuri.org/TemplateDbDataSet.xsd"; 
            this.EnforceConstraints = true; 
            this.SchemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema; 
            this.tableSMSTemplate = new SMSTemplateDataTable(); 
            base.Tables.Add(this.tableSMSTemplate); 
        } 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        private bool ShouldSerializeSMSTemplate() { 
            return false; 
        } 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        private void SchemaChanged(object sender, global::System.ComponentModel.CollectionChangeEventArgs e) { 
            if ((e.Action == global::System.ComponentModel.CollectionChangeAction.Remove)) { 
                this.InitVars(); 
            } 
        } 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedDataSetSchema(global::System.Xml.Schema.XmlSchemaSet xs) { 
            TemplateDbDataSet ds = new TemplateDbDataSet(); 
            global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType(); 
            global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence(); 
            global::System.Xml.Schema.XmlSchemaAny any = new global::System.Xml.Schema.XmlSchemaAny(); 
            any.Namespace = ds.Namespace; 
            sequence.Items.Add(any); 
            type.Particle = sequence; 
            global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable(); 
            if (xs.Contains(dsSchema.TargetNamespace)) { 
                global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream(); 
                global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream(); 
                try { 
                    global::System.Xml.Schema.XmlSchema schema = null; 
                    dsSchema.Write(s1); 
                    for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) { 
                        schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current)); 
                        s2.SetLength(0); 
                        schema.Write(s2); 
                        if ((s1.Length == s2.Length)) { 
                            s1.Position = 0; 
                            s2.Position = 0; 
                            for (; ((s1.Position != s1.Length)  
                                        && (s1.ReadByte() == s2.ReadByte())); ) { 
                                ; 
                            } 
                            if ((s1.Position == s1.Length)) { 
                                return type; 
                            } 
                        } 
                    } 
                } 
                finally { 
                    if ((s1 != null)) { 
                        s1.Close(); 
                    } 
                    if ((s2 != null)) { 
                        s2.Close(); 
                    } 
                } 
            } 
            xs.Add(dsSchema); 
            return type; 
        } 
         
        public delegate void SMSTemplateRowChangeEventHandler(object sender, SMSTemplateRowChangeEvent e); 
         
        ///  
        ///Represents the strongly named DataTable class. 
        /// 
        [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")] 
        public partial class SMSTemplateDataTable : global::System.Data.TypedTableBase { 
             
            private global::System.Data.DataColumn columnid; 
             
            private global::System.Data.DataColumn columnjudul; 
             
            private global::System.Data.DataColumn columnisi; 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            public SMSTemplateDataTable() { 
                this.TableName = "SMSTemplate"; 
                this.BeginInit(); 
                this.InitClass(); 
                this.EndInit(); 
            } 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            internal SMSTemplateDataTable(global::System.Data.DataTable table) { 
                this.TableName = table.TableName; 
                if ((table.CaseSensitive != table.DataSet.CaseSensitive)) { 
                    this.CaseSensitive = table.CaseSensitive; 
                } 
                if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) { 
                    this.Locale = table.Locale; 
                } 
                if ((table.Namespace != table.DataSet.Namespace)) { 
                    this.Namespace = table.Namespace; 
                } 
                this.Prefix = table.Prefix; 
                this.MinimumCapacity = table.MinimumCapacity; 
            } 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            public global::System.Data.DataColumn idColumn { 
                get { 
                    return this.columnid; 
                } 
            } 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            public global::System.Data.DataColumn judulColumn { 
                get { 
                    return this.columnjudul; 
                } 
            } 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            public global::System.Data.DataColumn isiColumn { 
                get { 
                    return this.columnisi; 
                } 
            } 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            public int Count { 
                get { 
                    return this.Rows.Count; 
                } 
            } 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            public SMSTemplateRow this[int index] { 
                get { 
                    return ((SMSTemplateRow)(this.Rows[index])); 
                } 
            } 
             
            public event SMSTemplateRowChangeEventHandler SMSTemplateRowChanging; 
             
            public event SMSTemplateRowChangeEventHandler SMSTemplateRowChanged; 
             
            public event SMSTemplateRowChangeEventHandler SMSTemplateRowDeleting; 
             
            public event SMSTemplateRowChangeEventHandler SMSTemplateRowDeleted; 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            public void AddSMSTemplateRow(SMSTemplateRow row) { 
                this.Rows.Add(row); 
            } 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            public SMSTemplateRow AddSMSTemplateRow(string judul, string isi) { 
                SMSTemplateRow rowSMSTemplateRow = ((SMSTemplateRow)(this.NewRow())); 
                object[] columnValuesArray = new object[] { 
                        null, 
                        judul, 
                        isi}; 
                rowSMSTemplateRow.ItemArray = columnValuesArray; 
                this.Rows.Add(rowSMSTemplateRow); 
                return rowSMSTemplateRow; 
            } 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            public SMSTemplateRow FindByid(int id) { 
                return ((SMSTemplateRow)(this.Rows.Find(new object[] { 
                            id}))); 
            } 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            public override global::System.Data.DataTable Clone() { 
                SMSTemplateDataTable cln = ((SMSTemplateDataTable)(base.Clone())); 
                cln.InitVars(); 
                return cln; 
            } 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            protected override global::System.Data.DataTable CreateInstance() { 
                return new SMSTemplateDataTable(); 
            } 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            internal void InitVars() { 
                this.columnid = base.Columns["id"]; 
                this.columnjudul = base.Columns["judul"]; 
                this.columnisi = base.Columns["isi"]; 
            } 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            private void InitClass() { 
                this.columnid = new global::System.Data.DataColumn("id", typeof(int), null, global::System.Data.MappingType.Element); 
                base.Columns.Add(this.columnid); 
                this.columnjudul = new global::System.Data.DataColumn("judul", typeof(string), null, global::System.Data.MappingType.Element); 
                base.Columns.Add(this.columnjudul); 
                this.columnisi = new global::System.Data.DataColumn("isi", typeof(string), null, global::System.Data.MappingType.Element); 
                base.Columns.Add(this.columnisi); 
                this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] { 
                                this.columnid}, true)); 
                this.columnid.AutoIncrement = true; 
                this.columnid.AutoIncrementSeed = -1; 
                this.columnid.AutoIncrementStep = -1; 
                this.columnid.AllowDBNull = false; 
                this.columnid.ReadOnly = true; 
                this.columnid.Unique = true; 
                this.columnjudul.MaxLength = 100; 
                this.columnisi.MaxLength = 255; 
            } 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            public SMSTemplateRow NewSMSTemplateRow() { 
                return ((SMSTemplateRow)(this.NewRow())); 
            } 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) { 
                return new SMSTemplateRow(builder); 
            } 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            protected override global::System.Type GetRowType() { 
                return typeof(SMSTemplateRow); 
            } 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) { 
                base.OnRowChanged(e); 
                if ((this.SMSTemplateRowChanged != null)) { 
                    this.SMSTemplateRowChanged(this, new SMSTemplateRowChangeEvent(((SMSTemplateRow)(e.Row)), e.Action)); 
                } 
            } 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) { 
                base.OnRowChanging(e); 
                if ((this.SMSTemplateRowChanging != null)) { 
                    this.SMSTemplateRowChanging(this, new SMSTemplateRowChangeEvent(((SMSTemplateRow)(e.Row)), e.Action)); 
                } 
            } 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) { 
                base.OnRowDeleted(e); 
                if ((this.SMSTemplateRowDeleted != null)) { 
                    this.SMSTemplateRowDeleted(this, new SMSTemplateRowChangeEvent(((SMSTemplateRow)(e.Row)), e.Action)); 
                } 
            } 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) { 
                base.OnRowDeleting(e); 
                if ((this.SMSTemplateRowDeleting != null)) { 
                    this.SMSTemplateRowDeleting(this, new SMSTemplateRowChangeEvent(((SMSTemplateRow)(e.Row)), e.Action)); 
                } 
            } 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            public void RemoveSMSTemplateRow(SMSTemplateRow row) { 
                this.Rows.Remove(row); 
            } 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) { 
                global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType(); 
                global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence(); 
                TemplateDbDataSet ds = new TemplateDbDataSet(); 
                global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny(); 
                any1.Namespace = "http://www.w3.org/2001/XMLSchema"; 
                any1.MinOccurs = new decimal(0); 
                any1.MaxOccurs = decimal.MaxValue; 
                any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax; 
                sequence.Items.Add(any1); 
                global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny(); 
                any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1"; 
                any2.MinOccurs = new decimal(1); 
                any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax; 
                sequence.Items.Add(any2); 
                global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute(); 
                attribute1.Name = "namespace"; 
                attribute1.FixedValue = ds.Namespace; 
                type.Attributes.Add(attribute1); 
                global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute(); 
                attribute2.Name = "tableTypeName"; 
                attribute2.FixedValue = "SMSTemplateDataTable"; 
                type.Attributes.Add(attribute2); 
                type.Particle = sequence; 
                global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable(); 
                if (xs.Contains(dsSchema.TargetNamespace)) { 
                    global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream(); 
                    global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream(); 
                    try { 
                        global::System.Xml.Schema.XmlSchema schema = null; 
                        dsSchema.Write(s1); 
                        for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) { 
                            schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current)); 
                            s2.SetLength(0); 
                            schema.Write(s2); 
                            if ((s1.Length == s2.Length)) { 
                                s1.Position = 0; 
                                s2.Position = 0; 
                                for (; ((s1.Position != s1.Length)  
                                            && (s1.ReadByte() == s2.ReadByte())); ) { 
                                    ; 
                                } 
                                if ((s1.Position == s1.Length)) { 
                                    return type; 
                                } 
                            } 
                        } 
                    } 
                    finally { 
                        if ((s1 != null)) { 
                            s1.Close(); 
                        } 
                        if ((s2 != null)) { 
                            s2.Close(); 
                        } 
                    } 
                } 
                xs.Add(dsSchema); 
                return type; 
            } 
        } 
         
        ///  
        ///Represents strongly named DataRow class. 
        /// 
        public partial class SMSTemplateRow : global::System.Data.DataRow { 
             
            private SMSTemplateDataTable tableSMSTemplate; 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            internal SMSTemplateRow(global::System.Data.DataRowBuilder rb) :  
                    base(rb) { 
                this.tableSMSTemplate = ((SMSTemplateDataTable)(this.Table)); 
            } 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            public int id { 
                get { 
                    return ((int)(this[this.tableSMSTemplate.idColumn])); 
                } 
                set { 
                    this[this.tableSMSTemplate.idColumn] = value; 
                } 
            } 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            public string judul { 
                get { 
                    try { 
                        return ((string)(this[this.tableSMSTemplate.judulColumn])); 
                    } 
                    catch (global::System.InvalidCastException e) { 
                        throw new global::System.Data.StrongTypingException("The value for column \'judul\' in table \'SMSTemplate\' is DBNull.", e); 
                    } 
                } 
                set { 
                    this[this.tableSMSTemplate.judulColumn] = value; 
                } 
            } 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            public string isi { 
                get { 
                    try { 
                        return ((string)(this[this.tableSMSTemplate.isiColumn])); 
                    } 
                    catch (global::System.InvalidCastException e) { 
                        throw new global::System.Data.StrongTypingException("The value for column \'isi\' in table \'SMSTemplate\' is DBNull.", e); 
                    } 
                } 
                set { 
                    this[this.tableSMSTemplate.isiColumn] = value; 
                } 
            } 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            public bool IsjudulNull() { 
                return this.IsNull(this.tableSMSTemplate.judulColumn); 
            } 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            public void SetjudulNull() { 
                this[this.tableSMSTemplate.judulColumn] = global::System.Convert.DBNull; 
            } 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            public bool IsisiNull() { 
                return this.IsNull(this.tableSMSTemplate.isiColumn); 
            } 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            public void SetisiNull() { 
                this[this.tableSMSTemplate.isiColumn] = global::System.Convert.DBNull; 
            } 
        } 
         
        ///  
        ///Row event argument class 
        /// 
        public class SMSTemplateRowChangeEvent : global::System.EventArgs { 
             
            private SMSTemplateRow eventRow; 
             
            private global::System.Data.DataRowAction eventAction; 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            public SMSTemplateRowChangeEvent(SMSTemplateRow row, global::System.Data.DataRowAction action) { 
                this.eventRow = row; 
                this.eventAction = action; 
            } 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            public SMSTemplateRow Row { 
                get { 
                    return this.eventRow; 
                } 
            } 
             
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
            public global::System.Data.DataRowAction Action { 
                get { 
                    return this.eventAction; 
                } 
            } 
        } 
    } 
} 
namespace SMSTemplateApp.TemplateDbDataSetTableAdapters { 
     
     
    ///  
    ///Represents the connection and commands used to retrieve and save data. 
    /// 
    [global::System.ComponentModel.DesignerCategoryAttribute("code")] 
    [global::System.ComponentModel.DataObjectAttribute(true)] 
    public partial class SMSTemplateTableAdapter : global::System.ComponentModel.Component { 
         
        private global::System.Data.SqlServerCe.SqlCeDataAdapter _adapter; 
         
        private global::System.Data.SqlServerCe.SqlCeConnection _connection; 
         
        private global::System.Data.SqlServerCe.SqlCeCommand[] _commandCollection; 
         
        private bool _clearBeforeFill; 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        public SMSTemplateTableAdapter() { 
            this.ClearBeforeFill = true; 
        } 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        private global::System.Data.SqlServerCe.SqlCeDataAdapter Adapter { 
            get { 
                if ((this._adapter == null)) { 
                    this.InitAdapter(); 
                } 
                return this._adapter; 
            } 
        } 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        internal global::System.Data.SqlServerCe.SqlCeConnection 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)) { 
                        ((global::System.Data.SqlServerCe.SqlCeCommand)(this.CommandCollection[i])).Connection = value; 
                    } 
                } 
            } 
        } 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        protected global::System.Data.SqlServerCe.SqlCeCommand[] CommandCollection { 
            get { 
                if ((this._commandCollection == null)) { 
                    this.InitCommandCollection(); 
                } 
                return this._commandCollection; 
            } 
        } 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        public bool ClearBeforeFill { 
            get { 
                return this._clearBeforeFill; 
            } 
            set { 
                this._clearBeforeFill = value; 
            } 
        } 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        private void InitAdapter() { 
            this._adapter = new global::System.Data.SqlServerCe.SqlCeDataAdapter(); 
            global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping(); 
            tableMapping.SourceTable = "Table"; 
            tableMapping.DataSetTable = "SMSTemplate"; 
            tableMapping.ColumnMappings.Add("id", "id"); 
            tableMapping.ColumnMappings.Add("judul", "judul"); 
            tableMapping.ColumnMappings.Add("isi", "isi"); 
            this._adapter.TableMappings.Add(tableMapping); 
            this._adapter.DeleteCommand = new global::System.Data.SqlServerCe.SqlCeCommand(); 
            this._adapter.DeleteCommand.Connection = this.Connection; 
            this._adapter.DeleteCommand.CommandText = "DELETE FROM [SMSTemplate] WHERE (([id] = @p1))"; 
            this._adapter.DeleteCommand.CommandType = global::System.Data.CommandType.Text; 
            this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlServerCe.SqlCeParameter("@p1", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, true, 0, 0, "id", global::System.Data.DataRowVersion.Original, null)); 
            this._adapter.InsertCommand = new global::System.Data.SqlServerCe.SqlCeCommand(); 
            this._adapter.InsertCommand.Connection = this.Connection; 
            this._adapter.InsertCommand.CommandText = "INSERT INTO [SMSTemplate] ([judul], [isi]) VALUES (@p1, @p2)"; 
            this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text; 
            this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlServerCe.SqlCeParameter("@p1", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, true, 0, 0, "judul", global::System.Data.DataRowVersion.Current, null)); 
            this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlServerCe.SqlCeParameter("@p2", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, true, 0, 0, "isi", global::System.Data.DataRowVersion.Current, null)); 
            this._adapter.UpdateCommand = new global::System.Data.SqlServerCe.SqlCeCommand(); 
            this._adapter.UpdateCommand.Connection = this.Connection; 
            this._adapter.UpdateCommand.CommandText = "UPDATE [SMSTemplate] SET [judul] = @p1, [isi] = @p2 WHERE (([id] = @p3))"; 
            this._adapter.UpdateCommand.CommandType = global::System.Data.CommandType.Text; 
            this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlServerCe.SqlCeParameter("@p1", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, true, 0, 0, "judul", global::System.Data.DataRowVersion.Current, null)); 
            this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlServerCe.SqlCeParameter("@p2", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, true, 0, 0, "isi", global::System.Data.DataRowVersion.Current, null)); 
            this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlServerCe.SqlCeParameter("@p3", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, true, 0, 0, "id", global::System.Data.DataRowVersion.Original, null)); 
        } 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        private void InitConnection() { 
            this._connection = new global::System.Data.SqlServerCe.SqlCeConnection(); 
            this._connection.ConnectionString = ("Data Source ="  
                        + (System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase) + "\\TemplateDb.sdf;")); 
        } 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        private void InitCommandCollection() { 
            this._commandCollection = new global::System.Data.SqlServerCe.SqlCeCommand[1]; 
            this._commandCollection[0] = new global::System.Data.SqlServerCe.SqlCeCommand(); 
            this._commandCollection[0].Connection = this.Connection; 
            this._commandCollection[0].CommandText = "SELECT [id], [judul], [isi] FROM [SMSTemplate]"; 
            this._commandCollection[0].CommandType = global::System.Data.CommandType.Text; 
        } 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)] 
        public virtual int Fill(TemplateDbDataSet.SMSTemplateDataTable dataTable) { 
            this.Adapter.SelectCommand = this.CommandCollection[0]; 
            if ((this.ClearBeforeFill == true)) { 
                dataTable.Clear(); 
            } 
            int returnValue = this.Adapter.Fill(dataTable); 
            return returnValue; 
        } 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)] 
        public virtual TemplateDbDataSet.SMSTemplateDataTable GetData() { 
            this.Adapter.SelectCommand = this.CommandCollection[0]; 
            TemplateDbDataSet.SMSTemplateDataTable dataTable = new TemplateDbDataSet.SMSTemplateDataTable(); 
            this.Adapter.Fill(dataTable); 
            return dataTable; 
        } 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        public virtual int Update(TemplateDbDataSet.SMSTemplateDataTable dataTable) { 
            return this.Adapter.Update(dataTable); 
        } 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        public virtual int Update(TemplateDbDataSet dataSet) { 
            return this.Adapter.Update(dataSet, "SMSTemplate"); 
        } 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        public virtual int Update(global::System.Data.DataRow dataRow) { 
            return this.Adapter.Update(new global::System.Data.DataRow[] { 
                        dataRow}); 
        } 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        public virtual int Update(global::System.Data.DataRow[] dataRows) { 
            return this.Adapter.Update(dataRows); 
        } 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Delete, true)] 
        public virtual int Delete(int p1) { 
            this.Adapter.DeleteCommand.Parameters[0].Value = ((int)(p1)); 
            global::System.Data.ConnectionState previousConnectionState = this.Adapter.DeleteCommand.Connection.State; 
            if (((this.Adapter.DeleteCommand.Connection.State & global::System.Data.ConnectionState.Open)  
                        != global::System.Data.ConnectionState.Open)) { 
                this.Adapter.DeleteCommand.Connection.Open(); 
            } 
            try { 
                int returnValue = this.Adapter.DeleteCommand.ExecuteNonQuery(); 
                return returnValue; 
            } 
            finally { 
                if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) { 
                    this.Adapter.DeleteCommand.Connection.Close(); 
                } 
            } 
        } 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Insert, true)] 
        public virtual int Insert(string p1, string p2) { 
            if ((p1 == null)) { 
                this.Adapter.InsertCommand.Parameters[0].Value = global::System.DBNull.Value; 
            } 
            else { 
                this.Adapter.InsertCommand.Parameters[0].Value = ((string)(p1)); 
            } 
            if ((p2 == null)) { 
                this.Adapter.InsertCommand.Parameters[1].Value = global::System.DBNull.Value; 
            } 
            else { 
                this.Adapter.InsertCommand.Parameters[1].Value = ((string)(p2)); 
            } 
            global::System.Data.ConnectionState previousConnectionState = this.Adapter.InsertCommand.Connection.State; 
            if (((this.Adapter.InsertCommand.Connection.State & global::System.Data.ConnectionState.Open)  
                        != global::System.Data.ConnectionState.Open)) { 
                this.Adapter.InsertCommand.Connection.Open(); 
            } 
            try { 
                int returnValue = this.Adapter.InsertCommand.ExecuteNonQuery(); 
                return returnValue; 
            } 
            finally { 
                if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) { 
                    this.Adapter.InsertCommand.Connection.Close(); 
                } 
            } 
        } 
         
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
        [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)] 
        public virtual int Update(string p1, string p2, int p3) { 
            if ((p1 == null)) { 
                this.Adapter.UpdateCommand.Parameters[0].Value = global::System.DBNull.Value; 
            } 
            else { 
                this.Adapter.UpdateCommand.Parameters[0].Value = ((string)(p1)); 
            } 
            if ((p2 == null)) { 
                this.Adapter.UpdateCommand.Parameters[1].Value = global::System.DBNull.Value; 
            } 
            else { 
                this.Adapter.UpdateCommand.Parameters[1].Value = ((string)(p2)); 
            } 
            this.Adapter.UpdateCommand.Parameters[2].Value = ((int)(p3)); 
            global::System.Data.ConnectionState previousConnectionState = this.Adapter.UpdateCommand.Connection.State; 
            if (((this.Adapter.UpdateCommand.Connection.State & global::System.Data.ConnectionState.Open)  
                        != global::System.Data.ConnectionState.Open)) { 
                this.Adapter.UpdateCommand.Connection.Open(); 
            } 
            try { 
                int returnValue = this.Adapter.UpdateCommand.ExecuteNonQuery(); 
                return returnValue; 
            } 
            finally { 
                if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) { 
                    this.Adapter.UpdateCommand.Connection.Close(); 
                } 
            } 
        } 
    } 
} 
namespace TemplateDbDataSetUtil { 
    using System; 
    using System.Data; 
     
     
    public partial class DesignerUtil { 
         
        public static bool IsDesignTime() { 
            // Determine if this instance is running against .NET Framework by using the MSCoreLib PublicKeyToken 
            System.Reflection.Assembly mscorlibAssembly = typeof(int).Assembly; 
            if ((mscorlibAssembly != null)) { 
                if (mscorlibAssembly.FullName.ToUpper().EndsWith("B77A5C561934E089")) { 
                    return true; 
                } 
            } 
            return false; 
        } 
         
        public static bool IsRunTime() { 
            // Determine if this instance is running against .NET Compact Framework by using the MSCoreLib PublicKeyToken 
            System.Reflection.Assembly mscorlibAssembly = typeof(int).Assembly; 
            if ((mscorlibAssembly != null)) { 
                if (mscorlibAssembly.FullName.ToUpper().EndsWith("969DB8053D3322AC")) { 
                    return true; 
                } 
            } 
            return false; 
        } 
    } 
}