⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mystuinfodbdataset10.designer.cs

📁 利用vs2008+sql2000开发的小型学生信息系统
💻 CS
📖 第 1 页 / 共 5 页
字号:
            private System.Data.DataColumn columnsid;
            
            private System.Data.DataColumn columnsname;
            
            private System.Data.DataColumn columnsex;
            
            private System.Data.DataColumn columnminzu;
            
            private System.Data.DataColumn columnjiguan;
            
            private System.Data.DataColumn columnbirthday;
            
            private System.Data.DataColumn columnhomeaddress;
            
            private System.Data.DataColumn columnpostcode;
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public studentInfoDataTable() {
                this.TableName = "studentInfo";
                this.BeginInit();
                this.InitClass();
                this.EndInit();
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            internal studentInfoDataTable(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;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected studentInfoDataTable(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : 
                    base(info, context) {
                this.InitVars();
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public System.Data.DataColumn sidColumn {
                get {
                    return this.columnsid;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public System.Data.DataColumn snameColumn {
                get {
                    return this.columnsname;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public System.Data.DataColumn sexColumn {
                get {
                    return this.columnsex;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public System.Data.DataColumn minzuColumn {
                get {
                    return this.columnminzu;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public System.Data.DataColumn jiguanColumn {
                get {
                    return this.columnjiguan;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public System.Data.DataColumn birthdayColumn {
                get {
                    return this.columnbirthday;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public System.Data.DataColumn homeaddressColumn {
                get {
                    return this.columnhomeaddress;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public System.Data.DataColumn postcodeColumn {
                get {
                    return this.columnpostcode;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            [System.ComponentModel.Browsable(false)]
            public int Count {
                get {
                    return this.Rows.Count;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public studentInfoRow this[int index] {
                get {
                    return ((studentInfoRow)(this.Rows[index]));
                }
            }
            
            public event studentInfoRowChangeEventHandler studentInfoRowChanging;
            
            public event studentInfoRowChangeEventHandler studentInfoRowChanged;
            
            public event studentInfoRowChangeEventHandler studentInfoRowDeleting;
            
            public event studentInfoRowChangeEventHandler studentInfoRowDeleted;
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void AddstudentInfoRow(studentInfoRow row) {
                this.Rows.Add(row);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public studentInfoRow AddstudentInfoRow(string sid, string sname, string sex, string minzu, string jiguan, System.DateTime birthday, string homeaddress, string postcode) {
                studentInfoRow rowstudentInfoRow = ((studentInfoRow)(this.NewRow()));
                rowstudentInfoRow.ItemArray = new object[] {
                        sid,
                        sname,
                        sex,
                        minzu,
                        jiguan,
                        birthday,
                        homeaddress,
                        postcode};
                this.Rows.Add(rowstudentInfoRow);
                return rowstudentInfoRow;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public studentInfoRow FindBysid(string sid) {
                return ((studentInfoRow)(this.Rows.Find(new object[] {
                            sid})));
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public virtual System.Collections.IEnumerator GetEnumerator() {
                return this.Rows.GetEnumerator();
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public override System.Data.DataTable Clone() {
                studentInfoDataTable cln = ((studentInfoDataTable)(base.Clone()));
                cln.InitVars();
                return cln;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override System.Data.DataTable CreateInstance() {
                return new studentInfoDataTable();
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            internal void InitVars() {
                this.columnsid = base.Columns["sid"];
                this.columnsname = base.Columns["sname"];
                this.columnsex = base.Columns["sex"];
                this.columnminzu = base.Columns["minzu"];
                this.columnjiguan = base.Columns["jiguan"];
                this.columnbirthday = base.Columns["birthday"];
                this.columnhomeaddress = base.Columns["homeaddress"];
                this.columnpostcode = base.Columns["postcode"];
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            private void InitClass() {
                this.columnsid = new System.Data.DataColumn("sid", typeof(string), null, System.Data.MappingType.Element);
                base.Columns.Add(this.columnsid);
                this.columnsname = new System.Data.DataColumn("sname", typeof(string), null, System.Data.MappingType.Element);
                base.Columns.Add(this.columnsname);
                this.columnsex = new System.Data.DataColumn("sex", typeof(string), null, System.Data.MappingType.Element);
                base.Columns.Add(this.columnsex);
                this.columnminzu = new System.Data.DataColumn("minzu", typeof(string), null, System.Data.MappingType.Element);
                base.Columns.Add(this.columnminzu);
                this.columnjiguan = new System.Data.DataColumn("jiguan", typeof(string), null, System.Data.MappingType.Element);
                base.Columns.Add(this.columnjiguan);
                this.columnbirthday = new System.Data.DataColumn("birthday", typeof(System.DateTime), null, System.Data.MappingType.Element);
                base.Columns.Add(this.columnbirthday);
                this.columnhomeaddress = new System.Data.DataColumn("homeaddress", typeof(string), null, System.Data.MappingType.Element);
                base.Columns.Add(this.columnhomeaddress);
                this.columnpostcode = new System.Data.DataColumn("postcode", typeof(string), null, System.Data.MappingType.Element);
                base.Columns.Add(this.columnpostcode);
                this.Constraints.Add(new System.Data.UniqueConstraint("Constraint1", new System.Data.DataColumn[] {
                                this.columnsid}, true));
                this.columnsid.AllowDBNull = false;
                this.columnsid.Unique = true;
                this.columnsid.MaxLength = 10;
                this.columnsname.MaxLength = 12;
                this.columnsex.MaxLength = 2;
                this.columnminzu.MaxLength = 20;
                this.columnjiguan.MaxLength = 20;
                this.columnhomeaddress.MaxLength = 50;
                this.columnpostcode.MaxLength = 10;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public studentInfoRow NewstudentInfoRow() {
                return ((studentInfoRow)(this.NewRow()));
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override System.Data.DataRow NewRowFromBuilder(System.Data.DataRowBuilder builder) {
                return new studentInfoRow(builder);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override System.Type GetRowType() {
                return typeof(studentInfoRow);
            }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -