dsss.cs
上传用户:clhb88
上传日期:2009-09-26
资源大小:3468k
文件大小:31k
源码类别:

医药行业

开发平台:

C#

  1. //------------------------------------------------------------------------------
  2. // <autogenerated>
  3. //     This code was generated by a tool.
  4. //     Runtime Version: 1.1.4322.573
  5. //
  6. //     Changes to this file may cause incorrect behavior and will be lost if 
  7. //     the code is regenerated.
  8. // </autogenerated>
  9. //------------------------------------------------------------------------------
  10. namespace 医院管理系统 {
  11.     using System;
  12.     using System.Data;
  13.     using System.Xml;
  14.     using System.Runtime.Serialization;
  15.     
  16.     
  17.     [Serializable()]
  18.     [System.ComponentModel.DesignerCategoryAttribute("code")]
  19.     [System.Diagnostics.DebuggerStepThrough()]
  20.     [System.ComponentModel.ToolboxItem(true)]
  21.     public class dsss : DataSet {
  22.         
  23.         private _TableDataTable table_Table;
  24.         
  25.         public dsss() {
  26.             this.InitClass();
  27.             System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler = new System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged);
  28.             this.Tables.CollectionChanged += schemaChangedHandler;
  29.             this.Relations.CollectionChanged += schemaChangedHandler;
  30.         }
  31.         
  32.         protected dsss(SerializationInfo info, StreamingContext context) {
  33.             string strSchema = ((string)(info.GetValue("XmlSchema", typeof(string))));
  34.             if ((strSchema != null)) {
  35.                 DataSet ds = new DataSet();
  36.                 ds.ReadXmlSchema(new XmlTextReader(new System.IO.StringReader(strSchema)));
  37.                 if ((ds.Tables["Table"] != null)) {
  38.                     this.Tables.Add(new _TableDataTable(ds.Tables["Table"]));
  39.                 }
  40.                 this.DataSetName = ds.DataSetName;
  41.                 this.Prefix = ds.Prefix;
  42.                 this.Namespace = ds.Namespace;
  43.                 this.Locale = ds.Locale;
  44.                 this.CaseSensitive = ds.CaseSensitive;
  45.                 this.EnforceConstraints = ds.EnforceConstraints;
  46.                 this.Merge(ds, false, System.Data.MissingSchemaAction.Add);
  47.                 this.InitVars();
  48.             }
  49.             else {
  50.                 this.InitClass();
  51.             }
  52.             this.GetSerializationData(info, context);
  53.             System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler = new System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged);
  54.             this.Tables.CollectionChanged += schemaChangedHandler;
  55.             this.Relations.CollectionChanged += schemaChangedHandler;
  56.         }
  57.         
  58.         [System.ComponentModel.Browsable(false)]
  59.         [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)]
  60.         public _TableDataTable _Table {
  61.             get {
  62.                 return this.table_Table;
  63.             }
  64.         }
  65.         
  66.         public override DataSet Clone() {
  67.             dsss cln = ((dsss)(base.Clone()));
  68.             cln.InitVars();
  69.             return cln;
  70.         }
  71.         
  72.         protected override bool ShouldSerializeTables() {
  73.             return false;
  74.         }
  75.         
  76.         protected override bool ShouldSerializeRelations() {
  77.             return false;
  78.         }
  79.         
  80.         protected override void ReadXmlSerializable(XmlReader reader) {
  81.             this.Reset();
  82.             DataSet ds = new DataSet();
  83.             ds.ReadXml(reader);
  84.             if ((ds.Tables["Table"] != null)) {
  85.                 this.Tables.Add(new _TableDataTable(ds.Tables["Table"]));
  86.             }
  87.             this.DataSetName = ds.DataSetName;
  88.             this.Prefix = ds.Prefix;
  89.             this.Namespace = ds.Namespace;
  90.             this.Locale = ds.Locale;
  91.             this.CaseSensitive = ds.CaseSensitive;
  92.             this.EnforceConstraints = ds.EnforceConstraints;
  93.             this.Merge(ds, false, System.Data.MissingSchemaAction.Add);
  94.             this.InitVars();
  95.         }
  96.         
  97.         protected override System.Xml.Schema.XmlSchema GetSchemaSerializable() {
  98.             System.IO.MemoryStream stream = new System.IO.MemoryStream();
  99.             this.WriteXmlSchema(new XmlTextWriter(stream, null));
  100.             stream.Position = 0;
  101.             return System.Xml.Schema.XmlSchema.Read(new XmlTextReader(stream), null);
  102.         }
  103.         
  104.         internal void InitVars() {
  105.             this.table_Table = ((_TableDataTable)(this.Tables["Table"]));
  106.             if ((this.table_Table != null)) {
  107.                 this.table_Table.InitVars();
  108.             }
  109.         }
  110.         
  111.         private void InitClass() {
  112.             this.DataSetName = "dsss";
  113.             this.Prefix = "";
  114.             this.Namespace = "http://www.tempuri.org/dsss.xsd";
  115.             this.Locale = new System.Globalization.CultureInfo("zh-CN");
  116.             this.CaseSensitive = false;
  117.             this.EnforceConstraints = true;
  118.             this.table_Table = new _TableDataTable();
  119.             this.Tables.Add(this.table_Table);
  120.         }
  121.         
  122.         private bool ShouldSerialize_Table() {
  123.             return false;
  124.         }
  125.         
  126.         private void SchemaChanged(object sender, System.ComponentModel.CollectionChangeEventArgs e) {
  127.             if ((e.Action == System.ComponentModel.CollectionChangeAction.Remove)) {
  128.                 this.InitVars();
  129.             }
  130.         }
  131.         
  132.         public delegate void _TableRowChangeEventHandler(object sender, _TableRowChangeEvent e);
  133.         
  134.         [System.Diagnostics.DebuggerStepThrough()]
  135.         public class _TableDataTable : DataTable, System.Collections.IEnumerable {
  136.             
  137.             private DataColumn columnids;
  138.             
  139.             private DataColumn columnmyimname;
  140.             
  141.             private DataColumn columnmyimdata;
  142.             
  143.             private DataColumn columnmyimtype;
  144.             
  145.             private DataColumn column姓名;
  146.             
  147.             private DataColumn column性别;
  148.             
  149.             private DataColumn column出生年月;
  150.             
  151.             private DataColumn column籍贯;
  152.             
  153.             private DataColumn column种族;
  154.             
  155.             private DataColumn column政治面貌;
  156.             
  157.             private DataColumn column学历;
  158.             
  159.             private DataColumn column职务;
  160.             
  161.             private DataColumn column电话;
  162.             
  163.             private DataColumn column邮箱;
  164.             
  165.             private DataColumn column家庭地址;
  166.             
  167.             internal _TableDataTable() : 
  168.                     base("Table") {
  169.                 this.InitClass();
  170.             }
  171.             
  172.             internal _TableDataTable(DataTable table) : 
  173.                     base(table.TableName) {
  174.                 if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  175.                     this.CaseSensitive = table.CaseSensitive;
  176.                 }
  177.                 if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  178.                     this.Locale = table.Locale;
  179.                 }
  180.                 if ((table.Namespace != table.DataSet.Namespace)) {
  181.                     this.Namespace = table.Namespace;
  182.                 }
  183.                 this.Prefix = table.Prefix;
  184.                 this.MinimumCapacity = table.MinimumCapacity;
  185.                 this.DisplayExpression = table.DisplayExpression;
  186.             }
  187.             
  188.             [System.ComponentModel.Browsable(false)]
  189.             public int Count {
  190.                 get {
  191.                     return this.Rows.Count;
  192.                 }
  193.             }
  194.             
  195.             internal DataColumn idsColumn {
  196.                 get {
  197.                     return this.columnids;
  198.                 }
  199.             }
  200.             
  201.             internal DataColumn myimnameColumn {
  202.                 get {
  203.                     return this.columnmyimname;
  204.                 }
  205.             }
  206.             
  207.             internal DataColumn myimdataColumn {
  208.                 get {
  209.                     return this.columnmyimdata;
  210.                 }
  211.             }
  212.             
  213.             internal DataColumn myimtypeColumn {
  214.                 get {
  215.                     return this.columnmyimtype;
  216.                 }
  217.             }
  218.             
  219.             internal DataColumn 姓名Column {
  220.                 get {
  221.                     return this.column姓名;
  222.                 }
  223.             }
  224.             
  225.             internal DataColumn 性别Column {
  226.                 get {
  227.                     return this.column性别;
  228.                 }
  229.             }
  230.             
  231.             internal DataColumn 出生年月Column {
  232.                 get {
  233.                     return this.column出生年月;
  234.                 }
  235.             }
  236.             
  237.             internal DataColumn 籍贯Column {
  238.                 get {
  239.                     return this.column籍贯;
  240.                 }
  241.             }
  242.             
  243.             internal DataColumn 种族Column {
  244.                 get {
  245.                     return this.column种族;
  246.                 }
  247.             }
  248.             
  249.             internal DataColumn 政治面貌Column {
  250.                 get {
  251.                     return this.column政治面貌;
  252.                 }
  253.             }
  254.             
  255.             internal DataColumn 学历Column {
  256.                 get {
  257.                     return this.column学历;
  258.                 }
  259.             }
  260.             
  261.             internal DataColumn 职务Column {
  262.                 get {
  263.                     return this.column职务;
  264.                 }
  265.             }
  266.             
  267.             internal DataColumn 电话Column {
  268.                 get {
  269.                     return this.column电话;
  270.                 }
  271.             }
  272.             
  273.             internal DataColumn 邮箱Column {
  274.                 get {
  275.                     return this.column邮箱;
  276.                 }
  277.             }
  278.             
  279.             internal DataColumn 家庭地址Column {
  280.                 get {
  281.                     return this.column家庭地址;
  282.                 }
  283.             }
  284.             
  285.             public _TableRow this[int index] {
  286.                 get {
  287.                     return ((_TableRow)(this.Rows[index]));
  288.                 }
  289.             }
  290.             
  291.             public event _TableRowChangeEventHandler _TableRowChanged;
  292.             
  293.             public event _TableRowChangeEventHandler _TableRowChanging;
  294.             
  295.             public event _TableRowChangeEventHandler _TableRowDeleted;
  296.             
  297.             public event _TableRowChangeEventHandler _TableRowDeleting;
  298.             
  299.             public void Add_TableRow(_TableRow row) {
  300.                 this.Rows.Add(row);
  301.             }
  302.             
  303.             public _TableRow Add_TableRow(string myimname, System.Byte[] myimdata, string myimtype, string 姓名, string 性别, string 出生年月, string 籍贯, string 种族, string 政治面貌, string 学历, string 职务, string 电话, string 邮箱, string 家庭地址) {
  304.                 _TableRow row_TableRow = ((_TableRow)(this.NewRow()));
  305.                 row_TableRow.ItemArray = new object[] {
  306.                         null,
  307.                         myimname,
  308.                         myimdata,
  309.                         myimtype,
  310.                         姓名,
  311.                         性别,
  312.                         出生年月,
  313.                         籍贯,
  314.                         种族,
  315.                         政治面貌,
  316.                         学历,
  317.                         职务,
  318.                         电话,
  319.                         邮箱,
  320.                         家庭地址};
  321.                 this.Rows.Add(row_TableRow);
  322.                 return row_TableRow;
  323.             }
  324.             
  325.             public System.Collections.IEnumerator GetEnumerator() {
  326.                 return this.Rows.GetEnumerator();
  327.             }
  328.             
  329.             public override DataTable Clone() {
  330.                 _TableDataTable cln = ((_TableDataTable)(base.Clone()));
  331.                 cln.InitVars();
  332.                 return cln;
  333.             }
  334.             
  335.             protected override DataTable CreateInstance() {
  336.                 return new _TableDataTable();
  337.             }
  338.             
  339.             internal void InitVars() {
  340.                 this.columnids = this.Columns["ids"];
  341.                 this.columnmyimname = this.Columns["myimname"];
  342.                 this.columnmyimdata = this.Columns["myimdata"];
  343.                 this.columnmyimtype = this.Columns["myimtype"];
  344.                 this.column姓名 = this.Columns["姓名"];
  345.                 this.column性别 = this.Columns["性别"];
  346.                 this.column出生年月 = this.Columns["出生年月"];
  347.                 this.column籍贯 = this.Columns["籍贯"];
  348.                 this.column种族 = this.Columns["种族"];
  349.                 this.column政治面貌 = this.Columns["政治面貌"];
  350.                 this.column学历 = this.Columns["学历"];
  351.                 this.column职务 = this.Columns["职务"];
  352.                 this.column电话 = this.Columns["电话"];
  353.                 this.column邮箱 = this.Columns["邮箱"];
  354.                 this.column家庭地址 = this.Columns["家庭地址"];
  355.             }
  356.             
  357.             private void InitClass() {
  358.                 this.columnids = new DataColumn("ids", typeof(long), null, System.Data.MappingType.Element);
  359.                 this.Columns.Add(this.columnids);
  360.                 this.columnmyimname = new DataColumn("myimname", typeof(string), null, System.Data.MappingType.Element);
  361.                 this.Columns.Add(this.columnmyimname);
  362.                 this.columnmyimdata = new DataColumn("myimdata", typeof(System.Byte[]), null, System.Data.MappingType.Element);
  363.                 this.Columns.Add(this.columnmyimdata);
  364.                 this.columnmyimtype = new DataColumn("myimtype", typeof(string), null, System.Data.MappingType.Element);
  365.                 this.Columns.Add(this.columnmyimtype);
  366.                 this.column姓名 = new DataColumn("姓名", typeof(string), null, System.Data.MappingType.Element);
  367.                 this.Columns.Add(this.column姓名);
  368.                 this.column性别 = new DataColumn("性别", typeof(string), null, System.Data.MappingType.Element);
  369.                 this.Columns.Add(this.column性别);
  370.                 this.column出生年月 = new DataColumn("出生年月", typeof(string), null, System.Data.MappingType.Element);
  371.                 this.Columns.Add(this.column出生年月);
  372.                 this.column籍贯 = new DataColumn("籍贯", typeof(string), null, System.Data.MappingType.Element);
  373.                 this.Columns.Add(this.column籍贯);
  374.                 this.column种族 = new DataColumn("种族", typeof(string), null, System.Data.MappingType.Element);
  375.                 this.Columns.Add(this.column种族);
  376.                 this.column政治面貌 = new DataColumn("政治面貌", typeof(string), null, System.Data.MappingType.Element);
  377.                 this.Columns.Add(this.column政治面貌);
  378.                 this.column学历 = new DataColumn("学历", typeof(string), null, System.Data.MappingType.Element);
  379.                 this.Columns.Add(this.column学历);
  380.                 this.column职务 = new DataColumn("职务", typeof(string), null, System.Data.MappingType.Element);
  381.                 this.Columns.Add(this.column职务);
  382.                 this.column电话 = new DataColumn("电话", typeof(string), null, System.Data.MappingType.Element);
  383.                 this.Columns.Add(this.column电话);
  384.                 this.column邮箱 = new DataColumn("邮箱", typeof(string), null, System.Data.MappingType.Element);
  385.                 this.Columns.Add(this.column邮箱);
  386.                 this.column家庭地址 = new DataColumn("家庭地址", typeof(string), null, System.Data.MappingType.Element);
  387.                 this.Columns.Add(this.column家庭地址);
  388.                 this.columnids.AutoIncrement = true;
  389.                 this.columnids.AllowDBNull = false;
  390.                 this.columnids.ReadOnly = true;
  391.             }
  392.             
  393.             public _TableRow New_TableRow() {
  394.                 return ((_TableRow)(this.NewRow()));
  395.             }
  396.             
  397.             protected override DataRow NewRowFromBuilder(DataRowBuilder builder) {
  398.                 return new _TableRow(builder);
  399.             }
  400.             
  401.             protected override System.Type GetRowType() {
  402.                 return typeof(_TableRow);
  403.             }
  404.             
  405.             protected override void OnRowChanged(DataRowChangeEventArgs e) {
  406.                 base.OnRowChanged(e);
  407.                 if ((this._TableRowChanged != null)) {
  408.                     this._TableRowChanged(this, new _TableRowChangeEvent(((_TableRow)(e.Row)), e.Action));
  409.                 }
  410.             }
  411.             
  412.             protected override void OnRowChanging(DataRowChangeEventArgs e) {
  413.                 base.OnRowChanging(e);
  414.                 if ((this._TableRowChanging != null)) {
  415.                     this._TableRowChanging(this, new _TableRowChangeEvent(((_TableRow)(e.Row)), e.Action));
  416.                 }
  417.             }
  418.             
  419.             protected override void OnRowDeleted(DataRowChangeEventArgs e) {
  420.                 base.OnRowDeleted(e);
  421.                 if ((this._TableRowDeleted != null)) {
  422.                     this._TableRowDeleted(this, new _TableRowChangeEvent(((_TableRow)(e.Row)), e.Action));
  423.                 }
  424.             }
  425.             
  426.             protected override void OnRowDeleting(DataRowChangeEventArgs e) {
  427.                 base.OnRowDeleting(e);
  428.                 if ((this._TableRowDeleting != null)) {
  429.                     this._TableRowDeleting(this, new _TableRowChangeEvent(((_TableRow)(e.Row)), e.Action));
  430.                 }
  431.             }
  432.             
  433.             public void Remove_TableRow(_TableRow row) {
  434.                 this.Rows.Remove(row);
  435.             }
  436.         }
  437.         
  438.         [System.Diagnostics.DebuggerStepThrough()]
  439.         public class _TableRow : DataRow {
  440.             
  441.             private _TableDataTable table_Table;
  442.             
  443.             internal _TableRow(DataRowBuilder rb) : 
  444.                     base(rb) {
  445.                 this.table_Table = ((_TableDataTable)(this.Table));
  446.             }
  447.             
  448.             public long ids {
  449.                 get {
  450.                     return ((long)(this[this.table_Table.idsColumn]));
  451.                 }
  452.                 set {
  453.                     this[this.table_Table.idsColumn] = value;
  454.                 }
  455.             }
  456.             
  457.             public string myimname {
  458.                 get {
  459.                     try {
  460.                         return ((string)(this[this.table_Table.myimnameColumn]));
  461.                     }
  462.                     catch (InvalidCastException e) {
  463.                         throw new StrongTypingException("无法获取值,因为它是 DBNull。", e);
  464.                     }
  465.                 }
  466.                 set {
  467.                     this[this.table_Table.myimnameColumn] = value;
  468.                 }
  469.             }
  470.             
  471.             public System.Byte[] myimdata {
  472.                 get {
  473.                     try {
  474.                         return ((System.Byte[])(this[this.table_Table.myimdataColumn]));
  475.                     }
  476.                     catch (InvalidCastException e) {
  477.                         throw new StrongTypingException("无法获取值,因为它是 DBNull。", e);
  478.                     }
  479.                 }
  480.                 set {
  481.                     this[this.table_Table.myimdataColumn] = value;
  482.                 }
  483.             }
  484.             
  485.             public string myimtype {
  486.                 get {
  487.                     try {
  488.                         return ((string)(this[this.table_Table.myimtypeColumn]));
  489.                     }
  490.                     catch (InvalidCastException e) {
  491.                         throw new StrongTypingException("无法获取值,因为它是 DBNull。", e);
  492.                     }
  493.                 }
  494.                 set {
  495.                     this[this.table_Table.myimtypeColumn] = value;
  496.                 }
  497.             }
  498.             
  499.             public string 姓名 {
  500.                 get {
  501.                     try {
  502.                         return ((string)(this[this.table_Table.姓名Column]));
  503.                     }
  504.                     catch (InvalidCastException e) {
  505.                         throw new StrongTypingException("无法获取值,因为它是 DBNull。", e);
  506.                     }
  507.                 }
  508.                 set {
  509.                     this[this.table_Table.姓名Column] = value;
  510.                 }
  511.             }
  512.             
  513.             public string 性别 {
  514.                 get {
  515.                     try {
  516.                         return ((string)(this[this.table_Table.性别Column]));
  517.                     }
  518.                     catch (InvalidCastException e) {
  519.                         throw new StrongTypingException("无法获取值,因为它是 DBNull。", e);
  520.                     }
  521.                 }
  522.                 set {
  523.                     this[this.table_Table.性别Column] = value;
  524.                 }
  525.             }
  526.             
  527.             public string 出生年月 {
  528.                 get {
  529.                     try {
  530.                         return ((string)(this[this.table_Table.出生年月Column]));
  531.                     }
  532.                     catch (InvalidCastException e) {
  533.                         throw new StrongTypingException("无法获取值,因为它是 DBNull。", e);
  534.                     }
  535.                 }
  536.                 set {
  537.                     this[this.table_Table.出生年月Column] = value;
  538.                 }
  539.             }
  540.             
  541.             public string 籍贯 {
  542.                 get {
  543.                     try {
  544.                         return ((string)(this[this.table_Table.籍贯Column]));
  545.                     }
  546.                     catch (InvalidCastException e) {
  547.                         throw new StrongTypingException("无法获取值,因为它是 DBNull。", e);
  548.                     }
  549.                 }
  550.                 set {
  551.                     this[this.table_Table.籍贯Column] = value;
  552.                 }
  553.             }
  554.             
  555.             public string 种族 {
  556.                 get {
  557.                     try {
  558.                         return ((string)(this[this.table_Table.种族Column]));
  559.                     }
  560.                     catch (InvalidCastException e) {
  561.                         throw new StrongTypingException("无法获取值,因为它是 DBNull。", e);
  562.                     }
  563.                 }
  564.                 set {
  565.                     this[this.table_Table.种族Column] = value;
  566.                 }
  567.             }
  568.             
  569.             public string 政治面貌 {
  570.                 get {
  571.                     try {
  572.                         return ((string)(this[this.table_Table.政治面貌Column]));
  573.                     }
  574.                     catch (InvalidCastException e) {
  575.                         throw new StrongTypingException("无法获取值,因为它是 DBNull。", e);
  576.                     }
  577.                 }
  578.                 set {
  579.                     this[this.table_Table.政治面貌Column] = value;
  580.                 }
  581.             }
  582.             
  583.             public string 学历 {
  584.                 get {
  585.                     try {
  586.                         return ((string)(this[this.table_Table.学历Column]));
  587.                     }
  588.                     catch (InvalidCastException e) {
  589.                         throw new StrongTypingException("无法获取值,因为它是 DBNull。", e);
  590.                     }
  591.                 }
  592.                 set {
  593.                     this[this.table_Table.学历Column] = value;
  594.                 }
  595.             }
  596.             
  597.             public string 职务 {
  598.                 get {
  599.                     try {
  600.                         return ((string)(this[this.table_Table.职务Column]));
  601.                     }
  602.                     catch (InvalidCastException e) {
  603.                         throw new StrongTypingException("无法获取值,因为它是 DBNull。", e);
  604.                     }
  605.                 }
  606.                 set {
  607.                     this[this.table_Table.职务Column] = value;
  608.                 }
  609.             }
  610.             
  611.             public string 电话 {
  612.                 get {
  613.                     try {
  614.                         return ((string)(this[this.table_Table.电话Column]));
  615.                     }
  616.                     catch (InvalidCastException e) {
  617.                         throw new StrongTypingException("无法获取值,因为它是 DBNull。", e);
  618.                     }
  619.                 }
  620.                 set {
  621.                     this[this.table_Table.电话Column] = value;
  622.                 }
  623.             }
  624.             
  625.             public string 邮箱 {
  626.                 get {
  627.                     try {
  628.                         return ((string)(this[this.table_Table.邮箱Column]));
  629.                     }
  630.                     catch (InvalidCastException e) {
  631.                         throw new StrongTypingException("无法获取值,因为它是 DBNull。", e);
  632.                     }
  633.                 }
  634.                 set {
  635.                     this[this.table_Table.邮箱Column] = value;
  636.                 }
  637.             }
  638.             
  639.             public string 家庭地址 {
  640.                 get {
  641.                     try {
  642.                         return ((string)(this[this.table_Table.家庭地址Column]));
  643.                     }
  644.                     catch (InvalidCastException e) {
  645.                         throw new StrongTypingException("无法获取值,因为它是 DBNull。", e);
  646.                     }
  647.                 }
  648.                 set {
  649.                     this[this.table_Table.家庭地址Column] = value;
  650.                 }
  651.             }
  652.             
  653.             public bool IsmyimnameNull() {
  654.                 return this.IsNull(this.table_Table.myimnameColumn);
  655.             }
  656.             
  657.             public void SetmyimnameNull() {
  658.                 this[this.table_Table.myimnameColumn] = System.Convert.DBNull;
  659.             }
  660.             
  661.             public bool IsmyimdataNull() {
  662.                 return this.IsNull(this.table_Table.myimdataColumn);
  663.             }
  664.             
  665.             public void SetmyimdataNull() {
  666.                 this[this.table_Table.myimdataColumn] = System.Convert.DBNull;
  667.             }
  668.             
  669.             public bool IsmyimtypeNull() {
  670.                 return this.IsNull(this.table_Table.myimtypeColumn);
  671.             }
  672.             
  673.             public void SetmyimtypeNull() {
  674.                 this[this.table_Table.myimtypeColumn] = System.Convert.DBNull;
  675.             }
  676.             
  677.             public bool Is姓名Null() {
  678.                 return this.IsNull(this.table_Table.姓名Column);
  679.             }
  680.             
  681.             public void Set姓名Null() {
  682.                 this[this.table_Table.姓名Column] = System.Convert.DBNull;
  683.             }
  684.             
  685.             public bool Is性别Null() {
  686.                 return this.IsNull(this.table_Table.性别Column);
  687.             }
  688.             
  689.             public void Set性别Null() {
  690.                 this[this.table_Table.性别Column] = System.Convert.DBNull;
  691.             }
  692.             
  693.             public bool Is出生年月Null() {
  694.                 return this.IsNull(this.table_Table.出生年月Column);
  695.             }
  696.             
  697.             public void Set出生年月Null() {
  698.                 this[this.table_Table.出生年月Column] = System.Convert.DBNull;
  699.             }
  700.             
  701.             public bool Is籍贯Null() {
  702.                 return this.IsNull(this.table_Table.籍贯Column);
  703.             }
  704.             
  705.             public void Set籍贯Null() {
  706.                 this[this.table_Table.籍贯Column] = System.Convert.DBNull;
  707.             }
  708.             
  709.             public bool Is种族Null() {
  710.                 return this.IsNull(this.table_Table.种族Column);
  711.             }
  712.             
  713.             public void Set种族Null() {
  714.                 this[this.table_Table.种族Column] = System.Convert.DBNull;
  715.             }
  716.             
  717.             public bool Is政治面貌Null() {
  718.                 return this.IsNull(this.table_Table.政治面貌Column);
  719.             }
  720.             
  721.             public void Set政治面貌Null() {
  722.                 this[this.table_Table.政治面貌Column] = System.Convert.DBNull;
  723.             }
  724.             
  725.             public bool Is学历Null() {
  726.                 return this.IsNull(this.table_Table.学历Column);
  727.             }
  728.             
  729.             public void Set学历Null() {
  730.                 this[this.table_Table.学历Column] = System.Convert.DBNull;
  731.             }
  732.             
  733.             public bool Is职务Null() {
  734.                 return this.IsNull(this.table_Table.职务Column);
  735.             }
  736.             
  737.             public void Set职务Null() {
  738.                 this[this.table_Table.职务Column] = System.Convert.DBNull;
  739.             }
  740.             
  741.             public bool Is电话Null() {
  742.                 return this.IsNull(this.table_Table.电话Column);
  743.             }
  744.             
  745.             public void Set电话Null() {
  746.                 this[this.table_Table.电话Column] = System.Convert.DBNull;
  747.             }
  748.             
  749.             public bool Is邮箱Null() {
  750.                 return this.IsNull(this.table_Table.邮箱Column);
  751.             }
  752.             
  753.             public void Set邮箱Null() {
  754.                 this[this.table_Table.邮箱Column] = System.Convert.DBNull;
  755.             }
  756.             
  757.             public bool Is家庭地址Null() {
  758.                 return this.IsNull(this.table_Table.家庭地址Column);
  759.             }
  760.             
  761.             public void Set家庭地址Null() {
  762.                 this[this.table_Table.家庭地址Column] = System.Convert.DBNull;
  763.             }
  764.         }
  765.         
  766.         [System.Diagnostics.DebuggerStepThrough()]
  767.         public class _TableRowChangeEvent : EventArgs {
  768.             
  769.             private _TableRow eventRow;
  770.             
  771.             private DataRowAction eventAction;
  772.             
  773.             public _TableRowChangeEvent(_TableRow row, DataRowAction action) {
  774.                 this.eventRow = row;
  775.                 this.eventAction = action;
  776.             }
  777.             
  778.             public _TableRow Row {
  779.                 get {
  780.                     return this.eventRow;
  781.                 }
  782.             }
  783.             
  784.             public DataRowAction Action {
  785.                 get {
  786.                     return this.eventAction;
  787.                 }
  788.             }
  789.         }
  790.     }
  791. }