当前路径:DALDataSet/AccessBlog.Designer.cs //------------------------------------------------------------------------------ // <auto-generated> // 此代码由工具生成。 // 运行库版本:2.0.50727.42 // // 对此文件的更改可能会导致不正确的行为,并且如果 // 重新生成代码,这些更改将会丢失。 // </auto-generated> //------------------------------------------------------------------------------ #pragma warning disable 1591 namespace DALDataSet { using System; [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")] [Serializable()] [System.ComponentModel.DesignerCategoryAttribute("code")] [System.ComponentModel.ToolboxItem(true)] [System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedDataSetSchema")] [System.Xml.Serialization.XmlRootAttribute("AccessBlog")] [System.ComponentModel.Design.HelpKeywordAttribute("vs.data.DataSet")] public partial class AccessBlog : System.Data.DataSet { private blogNoteDataTable tableblogNote; private blogNote1DataTable tableblogNote1; private System.Data.SchemaSerializationMode _schemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema; [System.Diagnostics.DebuggerNonUserCodeAttribute()] public AccessBlog() { this.BeginInit(); this.InitClass(); System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler = new System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged); base.Tables.CollectionChanged += schemaChangedHandler; base.Relations.CollectionChanged += schemaChangedHandler; this.EndInit(); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] protected AccessBlog(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context, false) { if ((this.IsBinarySerialized(info, context) == true)) { this.InitVars(false); System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler1 = new System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged); this.Tables.CollectionChanged += schemaChangedHandler1; this.Relations.CollectionChanged += schemaChangedHandler1; return; } string strSchema = ((string)(info.GetValue("XmlSchema", typeof(string)))); if ((this.DetermineSchemaSerializationMode(info, context) == System.Data.SchemaSerializationMode.IncludeSchema)) { System.Data.DataSet ds = new System.Data.DataSet(); ds.ReadXmlSchema(new System.Xml.XmlTextReader(new System.IO.StringReader(strSchema))); if ((ds.Tables["blogNote"] != null)) { base.Tables.Add(new blogNoteDataTable(ds.Tables["blogNote"])); } if ((ds.Tables["blogNote1"] != null)) { base.Tables.Add(new blogNote1DataTable(ds.Tables["blogNote1"])); } 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, System.Data.MissingSchemaAction.Add); this.InitVars(); } else { this.ReadXmlSchema(new System.Xml.XmlTextReader(new System.IO.StringReader(strSchema))); } this.GetSerializationData(info, context); System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler = new System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged); base.Tables.CollectionChanged += schemaChangedHandler; this.Relations.CollectionChanged += schemaChangedHandler; } [System.Diagnostics.DebuggerNonUserCodeAttribute()] [System.ComponentModel.Browsable(false)] [System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Content)] public blogNoteDataTable blogNote { get { return this.tableblogNote; } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] [System.ComponentModel.Browsable(false)] [System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Content)] public blogNote1DataTable blogNote1 { get { return this.tableblogNote1; } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] [System.ComponentModel.BrowsableAttribute(true)] [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Visible)] public override System.Data.SchemaSerializationMode SchemaSerializationMode { get { return this._schemaSerializationMode; } set { this._schemaSerializationMode = value; } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] public new System.Data.DataTableCollection Tables { get { return base.Tables; } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] public new System.Data.DataRelationCollection Relations { get { return base.Relations; } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] protected override void InitializeDerivedDataSet() { this.BeginInit(); this.InitClass(); this.EndInit(); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public override System.Data.DataSet Clone() { AccessBlog cln = ((AccessBlog)(base.Clone())); cln.InitVars(); cln.SchemaSerializationMode = this.SchemaSerializationMode; return cln; } [System.Diagnostics.DebuggerNonUserCodeAttribute()] protected override bool ShouldSerializeTables() { return false; } [System.Diagnostics.DebuggerNonUserCodeAttribute()] protected override bool ShouldSerializeRelations() { return false; } [System.Diagnostics.DebuggerNonUserCodeAttribute()] protected override void ReadXmlSerializable(System.Xml.XmlReader reader) { if ((this.DetermineSchemaSerializationMode(reader) == System.Data.SchemaSerializationMode.IncludeSchema)) { this.Reset(); System.Data.DataSet ds = new System.Data.DataSet(); ds.ReadXml(reader); if ((ds.Tables["blogNote"] != null)) { base.Tables.Add(new blogNoteDataTable(ds.Tables["blogNote"])); } if ((ds.Tables["blogNote1"] != null)) { base.Tables.Add(new blogNote1DataTable(ds.Tables["blogNote1"])); } 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, System.Data.MissingSchemaAction.Add); this.InitVars(); } else { this.ReadXml(reader); this.InitVars(); } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] protected override System.Xml.Schema.XmlSchema GetSchemaSerializable() { System.IO.MemoryStream stream = new System.IO.MemoryStream(); this.WriteXmlSchema(new System.Xml.XmlTextWriter(stream, null)); stream.Position = 0; return System.Xml.Schema.XmlSchema.Read(new System.Xml.XmlTextReader(stream), null); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] internal void InitVars() { this.InitVars(true); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] internal void InitVars(bool initTable) { this.tableblogNote = ((blogNoteDataTable)(base.Tables["blogNote"])); if ((initTable == true)) { if ((this.tableblogNote != null)) { this.tableblogNote.InitVars(); } } this.tableblogNote1 = ((blogNote1DataTable)(base.Tables["blogNote1"])); if ((initTable == true)) { if ((this.tableblogNote1 != null)) { this.tableblogNote1.InitVars(); } } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] private void InitClass() { this.DataSetName = "AccessBlog"; this.Prefix = ""; this.Namespace = "http://tempuri.org/AccessBlog.xsd"; this.EnforceConstraints = true; this.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema; this.tableblogNote = new blogNoteDataTable(); base.Tables.Add(this.tableblogNote); this.tableblogNote1 = new blogNote1DataTable(); base.Tables.Add(this.tableblogNote1); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] private bool ShouldSerializeblogNote() { return false; } [System.Diagnostics.DebuggerNonUserCodeAttribute()] private bool ShouldSerializeblogNote1() { return false; } [System.Diagnostics.DebuggerNonUserCodeAttribute()] private void SchemaChanged(object sender, System.ComponentModel.CollectionChangeEventArgs e) { if ((e.Action == System.ComponentModel.CollectionChangeAction.Remove)) { this.InitVars(); } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public static System.Xml.Schema.XmlSchemaComplexType GetTypedDataSetSchema(System.Xml.Schema.XmlSchemaSet xs) { AccessBlog ds = new AccessBlog(); System.Xml.Schema.XmlSchemaComplexType type = new System.Xml.Schema.XmlSchemaComplexType(); System.Xml.Schema.XmlSchemaSequence sequence = new System.Xml.Schema.XmlSchemaSequence(); xs.Add(ds.GetSchemaSerializable()); System.Xml.Schema.XmlSchemaAny any = new System.Xml.Schema.XmlSchemaAny(); any.Namespace = ds.Namespace; sequence.Items.Add(any); type.Particle = sequence; return type; } public delegate void blogNoteRowChangeEventHandler(object sender, blogNoteRowChangeEvent e); public delegate void blogNote1RowChangeEventHandler(object sender, blogNote1RowChangeEvent e); [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")] [System.Serializable()] [System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")] public partial class blogNoteDataTable : System.Data.DataTable, System.Collections.IEnumerable { private System.Data.DataColumn columnid; private System.Data.DataColumn columnpic; private System.Data.DataColumn columnpicText; private System.Data.DataColumn columncontent; [System.Diagnostics.DebuggerNonUserCodeAttribute()] public blogNoteDataTable() { this.TableName = "blogNote"; this.BeginInit(); this.InitClass(); this.EndInit(); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] internal blogNoteDataTable(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 blogNoteDataTable(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public System.Data.DataColumn idColumn { get { return this.columnid; } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public System.Data.DataColumn picColumn { get { return this.columnpic; } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public System.Data.DataColumn picTextColumn { get { return this.columnpicText; } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public System.Data.DataColumn contentColumn { get { return this.columncontent; } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] [System.ComponentModel.Browsable(false)] public int Count { get { return this.Rows.Count; } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public blogNoteRow this[int index] { get { return ((blogNoteRow)(this.Rows[index])); } } public event blogNoteRowChangeEventHandler blogNoteRowChanging; public event blogNoteRowChangeEventHandler blogNoteRowChanged; public event blogNoteRowChangeEventHandler blogNoteRowDeleting; public event blogNoteRowChangeEventHandler blogNoteRowDeleted; [System.Diagnostics.DebuggerNonUserCodeAttribute()] public void AddblogNoteRow(blogNoteRow row) { this.Rows.Add(row); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public blogNoteRow AddblogNoteRow(string pic, string picText, string content) { blogNoteRow rowblogNoteRow = ((blogNoteRow)(this.NewRow())); rowblogNoteRow.ItemArray = new object[] { null, pic, picText, content}; this.Rows.Add(rowblogNoteRow); return rowblogNoteRow; } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public blogNoteRow FindByid(int id) { return ((blogNoteRow)(this.Rows.Find(new object[] { id}))); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public virtual System.Collections.IEnumerator GetEnumerator() { return this.Rows.GetEnumerator(); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public override System.Data.DataTable Clone() { blogNoteDataTable cln = ((blogNoteDataTable)(base.Clone())); cln.InitVars(); return cln; } [System.Diagnostics.DebuggerNonUserCodeAttribute()] protected override System.Data.DataTable CreateInstance() { return new blogNoteDataTable(); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] internal void InitVars() { this.columnid = base.Columns["id"]; this.columnpic = base.Columns["pic"]; this.columnpicText = base.Columns["picText"]; this.columncontent = base.Columns["content"]; } [System.Diagnostics.DebuggerNonUserCodeAttribute()] private void InitClass() { this.columnid = new System.Data.DataColumn("id", typeof(int), null, System.Data.MappingType.Element); base.Columns.Add(this.columnid); this.columnpic = new System.Data.DataColumn("pic", typeof(string), null, System.Data.MappingType.Element); base.Columns.Add(this.columnpic); this.columnpicText = new System.Data.DataColumn("picText", typeof(string), null, System.Data.MappingType.Element); base.Columns.Add(this.columnpicText); this.columncontent = new System.Data.DataColumn("content", typeof(string), null, System.Data.MappingType.Element); base.Columns.Add(this.columncontent); this.Constraints.Add(new System.Data.UniqueConstraint("Constraint1", new System.Data.DataColumn[] { this.columnid}, true)); this.columnid.AutoIncrement = true; this.columnid.AllowDBNull = false; this.columnid.Unique = true; this.columnpic.MaxLength = 255; this.columnpicText.MaxLength = 100; this.columncontent.MaxLength = 536870910; } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public blogNoteRow NewblogNoteRow() { return ((blogNoteRow)(this.NewRow())); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] protected override System.Data.DataRow NewRowFromBuilder(System.Data.DataRowBuilder builder) { return new blogNoteRow(builder); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] protected override System.Type GetRowType() { return typeof(blogNoteRow); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] protected override void OnRowChanged(System.Data.DataRowChangeEventArgs e) { base.OnRowChanged(e); if ((this.blogNoteRowChanged != null)) { this.blogNoteRowChanged(this, new blogNoteRowChangeEvent(((blogNoteRow)(e.Row)), e.Action)); } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] protected override void OnRowChanging(System.Data.DataRowChangeEventArgs e) { base.OnRowChanging(e); if ((this.blogNoteRowChanging != null)) { this.blogNoteRowChanging(this, new blogNoteRowChangeEvent(((blogNoteRow)(e.Row)), e.Action)); } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] protected override void OnRowDeleted(System.Data.DataRowChangeEventArgs e) { base.OnRowDeleted(e); if ((this.blogNoteRowDeleted != null)) { this.blogNoteRowDeleted(this, new blogNoteRowChangeEvent(((blogNoteRow)(e.Row)), e.Action)); } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] protected override void OnRowDeleting(System.Data.DataRowChangeEventArgs e) { base.OnRowDeleting(e); if ((this.blogNoteRowDeleting != null)) { this.blogNoteRowDeleting(this, new blogNoteRowChangeEvent(((blogNoteRow)(e.Row)), e.Action)); } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public void RemoveblogNoteRow(blogNoteRow row) { this.Rows.Remove(row); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public static System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(System.Xml.Schema.XmlSchemaSet xs) { System.Xml.Schema.XmlSchemaComplexType type = new System.Xml.Schema.XmlSchemaComplexType(); System.Xml.Schema.XmlSchemaSequence sequence = new System.Xml.Schema.XmlSchemaSequence(); AccessBlog ds = new AccessBlog(); xs.Add(ds.GetSchemaSerializable()); System.Xml.Schema.XmlSchemaAny any1 = new System.Xml.Schema.XmlSchemaAny(); any1.Namespace = "http://www.w3.org/2001/XMLSchema"; any1.MinOccurs = new decimal(0); any1.MaxOccurs = decimal.MaxValue; any1.ProcessContents = System.Xml.Schema.XmlSchemaContentProcessing.Lax; sequence.Items.Add(any1); System.Xml.Schema.XmlSchemaAny any2 = new System.Xml.Schema.XmlSchemaAny(); any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1"; any2.MinOccurs = new decimal(1); any2.ProcessContents = System.Xml.Schema.XmlSchemaContentProcessing.Lax; sequence.Items.Add(any2); System.Xml.Schema.XmlSchemaAttribute attribute1 = new System.Xml.Schema.XmlSchemaAttribute(); attribute1.Name = "namespace"; attribute1.FixedValue = ds.Namespace; type.Attributes.Add(attribute1); System.Xml.Schema.XmlSchemaAttribute attribute2 = new System.Xml.Schema.XmlSchemaAttribute(); attribute2.Name = "tableTypeName"; attribute2.FixedValue = "blogNoteDataTable"; type.Attributes.Add(attribute2); type.Particle = sequence; return type; } } [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")] [System.Serializable()] [System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")] public partial class blogNote1DataTable : System.Data.DataTable, System.Collections.IEnumerable { private System.Data.DataColumn columnid; private System.Data.DataColumn columnpic; private System.Data.DataColumn columnpicText; private System.Data.DataColumn columncontent; [System.Diagnostics.DebuggerNonUserCodeAttribute()] public blogNote1DataTable() { this.TableName = "blogNote1"; this.BeginInit(); this.InitClass(); this.EndInit(); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] internal blogNote1DataTable(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 blogNote1DataTable(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public System.Data.DataColumn idColumn { get { return this.columnid; } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public System.Data.DataColumn picColumn { get { return this.columnpic; } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public System.Data.DataColumn picTextColumn { get { return this.columnpicText; } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public System.Data.DataColumn contentColumn { get { return this.columncontent; } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] [System.ComponentModel.Browsable(false)] public int Count { get { return this.Rows.Count; } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public blogNote1Row this[int index] { get { return ((blogNote1Row)(this.Rows[index])); } } public event blogNote1RowChangeEventHandler blogNote1RowChanging; public event blogNote1RowChangeEventHandler blogNote1RowChanged; public event blogNote1RowChangeEventHandler blogNote1RowDeleting; public event blogNote1RowChangeEventHandler blogNote1RowDeleted; [System.Diagnostics.DebuggerNonUserCodeAttribute()] public void AddblogNote1Row(blogNote1Row row) { this.Rows.Add(row); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public blogNote1Row AddblogNote1Row(string pic, string picText, string content) { blogNote1Row rowblogNote1Row = ((blogNote1Row)(this.NewRow())); rowblogNote1Row.ItemArray = new object[] { null, pic, picText, content}; this.Rows.Add(rowblogNote1Row); return rowblogNote1Row; } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public blogNote1Row FindByid(long id) { return ((blogNote1Row)(this.Rows.Find(new object[] { id}))); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public virtual System.Collections.IEnumerator GetEnumerator() { return this.Rows.GetEnumerator(); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public override System.Data.DataTable Clone() { blogNote1DataTable cln = ((blogNote1DataTable)(base.Clone())); cln.InitVars(); return cln; } [System.Diagnostics.DebuggerNonUserCodeAttribute()] protected override System.Data.DataTable CreateInstance() { return new blogNote1DataTable(); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] internal void InitVars() { this.columnid = base.Columns["id"]; this.columnpic = base.Columns["pic"]; this.columnpicText = base.Columns["picText"]; this.columncontent = base.Columns["content"]; } [System.Diagnostics.DebuggerNonUserCodeAttribute()] private void InitClass() { this.columnid = new System.Data.DataColumn("id", typeof(long), null, System.Data.MappingType.Element); base.Columns.Add(this.columnid); this.columnpic = new System.Data.DataColumn("pic", typeof(string), null, System.Data.MappingType.Element); base.Columns.Add(this.columnpic); this.columnpicText = new System.Data.DataColumn("picText", typeof(string), null, System.Data.MappingType.Element); base.Columns.Add(this.columnpicText); this.columncontent = new System.Data.DataColumn("content", typeof(string), null, System.Data.MappingType.Element); base.Columns.Add(this.columncontent); this.Constraints.Add(new System.Data.UniqueConstraint("Constraint1", new System.Data.DataColumn[] { this.columnid}, true)); this.columnid.AutoIncrement = true; this.columnid.AllowDBNull = false; this.columnid.ReadOnly = true; this.columnid.Unique = true; this.columnpic.MaxLength = 2147483647; this.columnpicText.MaxLength = 100; this.columncontent.MaxLength = 2147483647; } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public blogNote1Row NewblogNote1Row() { return ((blogNote1Row)(this.NewRow())); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] protected override System.Data.DataRow NewRowFromBuilder(System.Data.DataRowBuilder builder) { return new blogNote1Row(builder); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] protected override System.Type GetRowType() { return typeof(blogNote1Row); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] protected override void OnRowChanged(System.Data.DataRowChangeEventArgs e) { base.OnRowChanged(e); if ((this.blogNote1RowChanged != null)) { this.blogNote1RowChanged(this, new blogNote1RowChangeEvent(((blogNote1Row)(e.Row)), e.Action)); } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] protected override void OnRowChanging(System.Data.DataRowChangeEventArgs e) { base.OnRowChanging(e); if ((this.blogNote1RowChanging != null)) { this.blogNote1RowChanging(this, new blogNote1RowChangeEvent(((blogNote1Row)(e.Row)), e.Action)); } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] protected override void OnRowDeleted(System.Data.DataRowChangeEventArgs e) { base.OnRowDeleted(e); if ((this.blogNote1RowDeleted != null)) { this.blogNote1RowDeleted(this, new blogNote1RowChangeEvent(((blogNote1Row)(e.Row)), e.Action)); } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] protected override void OnRowDeleting(System.Data.DataRowChangeEventArgs e) { base.OnRowDeleting(e); if ((this.blogNote1RowDeleting != null)) { this.blogNote1RowDeleting(this, new blogNote1RowChangeEvent(((blogNote1Row)(e.Row)), e.Action)); } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public void RemoveblogNote1Row(blogNote1Row row) { this.Rows.Remove(row); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public static System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(System.Xml.Schema.XmlSchemaSet xs) { System.Xml.Schema.XmlSchemaComplexType type = new System.Xml.Schema.XmlSchemaComplexType(); System.Xml.Schema.XmlSchemaSequence sequence = new System.Xml.Schema.XmlSchemaSequence(); AccessBlog ds = new AccessBlog(); xs.Add(ds.GetSchemaSerializable()); System.Xml.Schema.XmlSchemaAny any1 = new System.Xml.Schema.XmlSchemaAny(); any1.Namespace = "http://www.w3.org/2001/XMLSchema"; any1.MinOccurs = new decimal(0); any1.MaxOccurs = decimal.MaxValue; any1.ProcessContents = System.Xml.Schema.XmlSchemaContentProcessing.Lax; sequence.Items.Add(any1); System.Xml.Schema.XmlSchemaAny any2 = new System.Xml.Schema.XmlSchemaAny(); any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1"; any2.MinOccurs = new decimal(1); any2.ProcessContents = System.Xml.Schema.XmlSchemaContentProcessing.Lax; sequence.Items.Add(any2); System.Xml.Schema.XmlSchemaAttribute attribute1 = new System.Xml.Schema.XmlSchemaAttribute(); attribute1.Name = "namespace"; attribute1.FixedValue = ds.Namespace; type.Attributes.Add(attribute1); System.Xml.Schema.XmlSchemaAttribute attribute2 = new System.Xml.Schema.XmlSchemaAttribute(); attribute2.Name = "tableTypeName"; attribute2.FixedValue = "blogNote1DataTable"; type.Attributes.Add(attribute2); type.Particle = sequence; return type; } } [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")] public partial class blogNoteRow : System.Data.DataRow { private blogNoteDataTable tableblogNote; [System.Diagnostics.DebuggerNonUserCodeAttribute()] internal blogNoteRow(System.Data.DataRowBuilder rb) : base(rb) { this.tableblogNote = ((blogNoteDataTable)(this.Table)); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public int id { get { return ((int)(this[this.tableblogNote.idColumn])); } set { this[this.tableblogNote.idColumn] = value; } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public string pic { get { try { return ((string)(this[this.tableblogNote.picColumn])); } catch (System.InvalidCastException e) { throw new System.Data.StrongTypingException("表“blogNote”中列“pic”的值为 DBNull。", e); } } set { this[this.tableblogNote.picColumn] = value; } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public string picText { get { try { return ((string)(this[this.tableblogNote.picTextColumn])); } catch (System.InvalidCastException e) { throw new System.Data.StrongTypingException("表“blogNote”中列“picText”的值为 DBNull。", e); } } set { this[this.tableblogNote.picTextColumn] = value; } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public string content { get { try { return ((string)(this[this.tableblogNote.contentColumn])); } catch (System.InvalidCastException e) { throw new System.Data.StrongTypingException("表“blogNote”中列“content”的值为 DBNull。", e); } } set { this[this.tableblogNote.contentColumn] = value; } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public bool IspicNull() { return this.IsNull(this.tableblogNote.picColumn); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public void SetpicNull() { this[this.tableblogNote.picColumn] = System.Convert.DBNull; } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public bool IspicTextNull() { return this.IsNull(this.tableblogNote.picTextColumn); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public void SetpicTextNull() { this[this.tableblogNote.picTextColumn] = System.Convert.DBNull; } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public bool IscontentNull() { return this.IsNull(this.tableblogNote.contentColumn); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public void SetcontentNull() { this[this.tableblogNote.contentColumn] = System.Convert.DBNull; } } [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")] public partial class blogNote1Row : System.Data.DataRow { private blogNote1DataTable tableblogNote1; [System.Diagnostics.DebuggerNonUserCodeAttribute()] internal blogNote1Row(System.Data.DataRowBuilder rb) : base(rb) { this.tableblogNote1 = ((blogNote1DataTable)(this.Table)); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public long id { get { return ((long)(this[this.tableblogNote1.idColumn])); } set { this[this.tableblogNote1.idColumn] = value; } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public string pic { get { try { return ((string)(this[this.tableblogNote1.picColumn])); } catch (System.InvalidCastException e) { throw new System.Data.StrongTypingException("表“blogNote1”中列“pic”的值为 DBNull。", e); } } set { this[this.tableblogNote1.picColumn] = value; } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public string picText { get { try { return ((string)(this[this.tableblogNote1.picTextColumn])); } catch (System.InvalidCastException e) { throw new System.Data.StrongTypingException("表“blogNote1”中列“picText”的值为 DBNull。", e); } } set { this[this.tableblogNote1.picTextColumn] = value; } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public string content { get { try { return ((string)(this[this.tableblogNote1.contentColumn])); } catch (System.InvalidCastException e) { throw new System.Data.StrongTypingException("表“blogNote1”中列“content”的值为 DBNull。", e); } } set { this[this.tableblogNote1.contentColumn] = value; } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public bool IspicNull() { return this.IsNull(this.tableblogNote1.picColumn); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public void SetpicNull() { this[this.tableblogNote1.picColumn] = System.Convert.DBNull; } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public bool IspicTextNull() { return this.IsNull(this.tableblogNote1.picTextColumn); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public void SetpicTextNull() { this[this.tableblogNote1.picTextColumn] = System.Convert.DBNull; } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public bool IscontentNull() { return this.IsNull(this.tableblogNote1.contentColumn); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public void SetcontentNull() { this[this.tableblogNote1.contentColumn] = System.Convert.DBNull; } } [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")] public class blogNoteRowChangeEvent : System.EventArgs { private blogNoteRow eventRow; private System.Data.DataRowAction eventAction; [System.Diagnostics.DebuggerNonUserCodeAttribute()] public blogNoteRowChangeEvent(blogNoteRow row, System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public blogNoteRow Row { get { return this.eventRow; } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public System.Data.DataRowAction Action { get { return this.eventAction; } } } [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")] public class blogNote1RowChangeEvent : System.EventArgs { private blogNote1Row eventRow; private System.Data.DataRowAction eventAction; [System.Diagnostics.DebuggerNonUserCodeAttribute()] public blogNote1RowChangeEvent(blogNote1Row row, System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public blogNote1Row Row { get { return this.eventRow; } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] public System.Data.DataRowAction Action { get { return this.eventAction; } } } } } namespace DALDataSet.AccessBlogTableAdapters { [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 blogNoteTableAdapter : System.ComponentModel.Component { private System.Data.OleDb.OleDbDataAdapter _adapter; private System.Data.OleDb.OleDbConnection _connection; private System.Data.OleDb.OleDbCommand[] _commandCollection; private bool _clearBeforeFill; [System.Diagnostics.DebuggerNonUserCodeAttribute()] public blogNoteTableAdapter() { this.ClearBeforeFill = true; } [System.Diagnostics.DebuggerNonUserCodeAttribute()] private System.Data.OleDb.OleDbDataAdapter Adapter { get { if ((this._adapter == null)) { this.InitAdapter(); } return this._adapter; } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] internal System.Data.OleDb.OleDbConnection 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.OleDb.OleDbCommand)(this.CommandCollection[i])).Connection = value; } } } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] protected System.Data.OleDb.OleDbCommand[] 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() { this._adapter = new System.Data.OleDb.OleDbDataAdapter(); System.Data.Common.DataTableMapping tableMapping = new System.Data.Common.DataTableMapping(); tableMapping.SourceTable = "Table"; tableMapping.DataSetTable = "blogNote"; tableMapping.ColumnMappings.Add("id", "id"); tableMapping.ColumnMappings.Add("pic", "pic"); tableMapping.ColumnMappings.Add("picText", "picText"); tableMapping.ColumnMappings.Add("content", "content"); this._adapter.TableMappings.Add(tableMapping); this._adapter.DeleteCommand = new System.Data.OleDb.OleDbCommand(); this._adapter.DeleteCommand.Connection = this.Connection; this._adapter.DeleteCommand.CommandText = "DELETE FROM `blogNote` WHERE ((`id` = ?) AND ((? = 1 AND `pic` IS NULL) OR (`pic`" + " = ?)) AND ((? = 1 AND `picText` IS NULL) OR (`picText` = ?)))"; this._adapter.DeleteCommand.CommandType = System.Data.CommandType.Text; this._adapter.DeleteCommand.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_id", System.Data.OleDb.OleDbType.Integer, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "id", System.Data.DataRowVersion.Original, false, null)); this._adapter.DeleteCommand.Parameters.Add(new System.Data.OleDb.OleDbParameter("IsNull_pic", System.Data.OleDb.OleDbType.Integer, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "pic", System.Data.DataRowVersion.Original, true, null)); this._adapter.DeleteCommand.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_pic", System.Data.OleDb.OleDbType.VarWChar, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "pic", System.Data.DataRowVersion.Original, false, null)); this._adapter.DeleteCommand.Parameters.Add(new System.Data.OleDb.OleDbParameter("IsNull_picText", System.Data.OleDb.OleDbType.Integer, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "picText", System.Data.DataRowVersion.Original, true, null)); this._adapter.DeleteCommand.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_picText", System.Data.OleDb.OleDbType.VarWChar, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "picText", System.Data.DataRowVersion.Original, false, null)); this._adapter.InsertCommand = new System.Data.OleDb.OleDbCommand(); this._adapter.InsertCommand.Connection = this.Connection; this._adapter.InsertCommand.CommandText = "INSERT INTO `blogNote` (`pic`, `picText`, `content`) VALUES (?, ?, ?)"; this._adapter.InsertCommand.CommandType = System.Data.CommandType.Text; this._adapter.InsertCommand.Parameters.Add(new System.Data.OleDb.OleDbParameter("pic", System.Data.OleDb.OleDbType.VarWChar, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "pic", System.Data.DataRowVersion.Current, false, null)); this._adapter.InsertCommand.Parameters.Add(new System.Data.OleDb.OleDbParameter("picText", System.Data.OleDb.OleDbType.VarWChar, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "picText", System.Data.DataRowVersion.Current, false, null)); this._adapter.InsertCommand.Parameters.Add(new System.Data.OleDb.OleDbParameter("content", System.Data.OleDb.OleDbType.LongVarWChar, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "content", System.Data.DataRowVersion.Current, false, null)); this._adapter.UpdateCommand = new System.Data.OleDb.OleDbCommand(); this._adapter.UpdateCommand.Connection = this.Connection; this._adapter.UpdateCommand.CommandText = "UPDATE `blogNote` SET `pic` = ?, `picText` = ?, `content` = ? WHERE ((`id` = ?) A" + "ND ((? = 1 AND `pic` IS NULL) OR (`pic` = ?)) AND ((? = 1 AND `picText` IS NULL)" + " OR (`picText` = ?)))"; this._adapter.UpdateCommand.CommandType = System.Data.CommandType.Text; this._adapter.UpdateCommand.Parameters.Add(new System.Data.OleDb.OleDbParameter("pic", System.Data.OleDb.OleDbType.VarWChar, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "pic", System.Data.DataRowVersion.Current, false, null)); this._adapter.UpdateCommand.Parameters.Add(new System.Data.OleDb.OleDbParameter("picText", System.Data.OleDb.OleDbType.VarWChar, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "picText", System.Data.DataRowVersion.Current, false, null)); this._adapter.UpdateCommand.Parameters.Add(new System.Data.OleDb.OleDbParameter("content", System.Data.OleDb.OleDbType.LongVarWChar, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "content", System.Data.DataRowVersion.Current, false, null)); this._adapter.UpdateCommand.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_id", System.Data.OleDb.OleDbType.Integer, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "id", System.Data.DataRowVersion.Original, false, null)); this._adapter.UpdateCommand.Parameters.Add(new System.Data.OleDb.OleDbParameter("IsNull_pic", System.Data.OleDb.OleDbType.Integer, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "pic", System.Data.DataRowVersion.Original, true, null)); this._adapter.UpdateCommand.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_pic", System.Data.OleDb.OleDbType.VarWChar, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "pic", System.Data.DataRowVersion.Original, false, null)); this._adapter.UpdateCommand.Parameters.Add(new System.Data.OleDb.OleDbParameter("IsNull_picText", System.Data.OleDb.OleDbType.Integer, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "picText", System.Data.DataRowVersion.Original, true, null)); this._adapter.UpdateCommand.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_picText", System.Data.OleDb.OleDbType.VarWChar, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "picText", System.Data.DataRowVersion.Original, false, null)); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] private void InitConnection() { this._connection = new System.Data.OleDb.OleDbConnection(); this._connection.ConnectionString = global::DALDataSet.Properties.Settings.Default.myPageConnectionString; } [System.Diagnostics.DebuggerNonUserCodeAttribute()] private void InitCommandCollection() { this._commandCollection = new System.Data.OleDb.OleDbCommand[1]; this._commandCollection[0] = new System.Data.OleDb.OleDbCommand(); this._commandCollection[0].Connection = this.Connection; this._commandCollection[0].CommandText = "SELECT id, pic, picText, content\r\nFROM blogNote\r\nORDER BY id DESC"; 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 SetData(AccessBlog.blogNoteDataTable 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 AccessBlog.blogNoteDataTable GetData() { this.Adapter.SelectCommand = this.CommandCollection[0]; AccessBlog.blogNoteDataTable dataTable = new AccessBlog.blogNoteDataTable(); this.Adapter.Fill(dataTable); return dataTable; } [System.Diagnostics.DebuggerNonUserCodeAttribute()] [System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] public virtual int Update(AccessBlog.blogNoteDataTable dataTable) { return this.Adapter.Update(dataTable); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] [System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] public virtual int Update(AccessBlog dataSet) { return this.Adapter.Update(dataSet, "blogNote"); } [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.Delete, true)] public virtual int Delete(int Original_id, string Original_pic, string Original_picText) { this.Adapter.DeleteCommand.Parameters[0].Value = ((int)(Original_id)); if ((Original_pic == null)) { this.Adapter.DeleteCommand.Parameters[1].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[2].Value = System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[1].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[2].Value = ((string)(Original_pic)); } if ((Original_picText == null)) { this.Adapter.DeleteCommand.Parameters[3].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[4].Value = System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[3].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[4].Value = ((string)(Original_picText)); } System.Data.ConnectionState previousConnectionState = this.Adapter.DeleteCommand.Connection.State; if (((this.Adapter.DeleteCommand.Connection.State & System.Data.ConnectionState.Open) != System.Data.ConnectionState.Open)) { this.Adapter.DeleteCommand.Connection.Open(); } try { int returnValue = this.Adapter.DeleteCommand.ExecuteNonQuery(); return returnValue; } finally { if ((previousConnectionState == System.Data.ConnectionState.Closed)) { this.Adapter.DeleteCommand.Connection.Close(); } } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] [System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] [System.ComponentModel.DataObjectMethodAttribute(System.ComponentModel.DataObjectMethodType.Insert, true)] public virtual int Insert(string pic, string picText, string content) { if ((pic == null)) { this.Adapter.InsertCommand.Parameters[0].Value = System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[0].Value = ((string)(pic)); } if ((picText == null)) { this.Adapter.InsertCommand.Parameters[1].Value = System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[1].Value = ((string)(picText)); } if ((content == null)) { this.Adapter.InsertCommand.Parameters[2].Value = System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[2].Value = ((string)(content)); } 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.Diagnostics.DebuggerNonUserCodeAttribute()] [System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] [System.ComponentModel.DataObjectMethodAttribute(System.ComponentModel.DataObjectMethodType.Update, true)] public virtual int Update(string pic, string picText, string content, int Original_id, string Original_pic, string Original_picText) { if ((pic == null)) { this.Adapter.UpdateCommand.Parameters[0].Value = System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[0].Value = ((string)(pic)); } if ((picText == null)) { this.Adapter.UpdateCommand.Parameters[1].Value = System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[1].Value = ((string)(picText)); } if ((content == null)) { this.Adapter.UpdateCommand.Parameters[2].Value = System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[2].Value = ((string)(content)); } this.Adapter.UpdateCommand.Parameters[3].Value = ((int)(Original_id)); if ((Original_pic == null)) { this.Adapter.UpdateCommand.Parameters[4].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[5].Value = System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[4].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[5].Value = ((string)(Original_pic)); } if ((Original_picText == null)) { this.Adapter.UpdateCommand.Parameters[6].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[7].Value = System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[6].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[7].Value = ((string)(Original_picText)); } System.Data.ConnectionState previousConnectionState = this.Adapter.UpdateCommand.Connection.State; if (((this.Adapter.UpdateCommand.Connection.State & System.Data.ConnectionState.Open) != System.Data.ConnectionState.Open)) { this.Adapter.UpdateCommand.Connection.Open(); } try { int returnValue = this.Adapter.UpdateCommand.ExecuteNonQuery(); return returnValue; } finally { if ((previousConnectionState == System.Data.ConnectionState.Closed)) { this.Adapter.UpdateCommand.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 blogNote1TableAdapter : 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 blogNote1TableAdapter() { 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() { this._adapter = new System.Data.SqlClient.SqlDataAdapter(); System.Data.Common.DataTableMapping tableMapping = new System.Data.Common.DataTableMapping(); tableMapping.SourceTable = "Table"; tableMapping.DataSetTable = "blogNote1"; tableMapping.ColumnMappings.Add("id", "id"); tableMapping.ColumnMappings.Add("pic", "pic"); tableMapping.ColumnMappings.Add("picText", "picText"); tableMapping.ColumnMappings.Add("content", "content"); this._adapter.TableMappings.Add(tableMapping); this._adapter.DeleteCommand = new System.Data.SqlClient.SqlCommand(); this._adapter.DeleteCommand.Connection = this.Connection; this._adapter.DeleteCommand.CommandText = "DELETE FROM [blogNote] WHERE (([id] = @Original_id) AND ((@IsNull_picText = 1 AND" + " [picText] IS NULL) OR ([picText] = @Original_picText)))"; this._adapter.DeleteCommand.CommandType = System.Data.CommandType.Text; this._adapter.DeleteCommand.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_id", System.Data.SqlDbType.BigInt, 0, System.Data.ParameterDirection.Input, 0, 0, "id", System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new System.Data.SqlClient.SqlParameter("@IsNull_picText", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, 0, 0, "picText", System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_picText", System.Data.SqlDbType.NVarChar, 0, System.Data.ParameterDirection.Input, 0, 0, "picText", System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.InsertCommand = new System.Data.SqlClient.SqlCommand(); this._adapter.InsertCommand.Connection = this.Connection; this._adapter.InsertCommand.CommandText = "INSERT INTO [blogNote] ([pic], [picText], [content]) VALUES (@pic, @picText, @con" + "tent);\r\nSELECT id, pic, picText, [content] FROM blogNote WHERE (id = SCOPE_IDENT" + "ITY()) ORDER BY id DESC"; this._adapter.InsertCommand.CommandType = System.Data.CommandType.Text; this._adapter.InsertCommand.Parameters.Add(new System.Data.SqlClient.SqlParameter("@pic", System.Data.SqlDbType.NVarChar, 0, System.Data.ParameterDirection.Input, 0, 0, "pic", System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new System.Data.SqlClient.SqlParameter("@picText", System.Data.SqlDbType.NVarChar, 0, System.Data.ParameterDirection.Input, 0, 0, "picText", System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new System.Data.SqlClient.SqlParameter("@content", System.Data.SqlDbType.Text, 0, System.Data.ParameterDirection.Input, 0, 0, "content", System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand = new System.Data.SqlClient.SqlCommand(); this._adapter.UpdateCommand.Connection = this.Connection; this._adapter.UpdateCommand.CommandText = @"UPDATE [blogNote] SET [pic] = @pic, [picText] = @picText, [content] = @content WHERE (([id] = @Original_id) AND ((@IsNull_picText = 1 AND [picText] IS NULL) OR ([picText] = @Original_picText))); SELECT id, pic, picText, [content] FROM blogNote WHERE (id = @id) ORDER BY id DESC"; this._adapter.UpdateCommand.CommandType = System.Data.CommandType.Text; this._adapter.UpdateCommand.Parameters.Add(new System.Data.SqlClient.SqlParameter("@pic", System.Data.SqlDbType.NVarChar, 0, System.Data.ParameterDirection.Input, 0, 0, "pic", System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new System.Data.SqlClient.SqlParameter("@picText", System.Data.SqlDbType.NVarChar, 0, System.Data.ParameterDirection.Input, 0, 0, "picText", System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new System.Data.SqlClient.SqlParameter("@content", System.Data.SqlDbType.Text, 0, System.Data.ParameterDirection.Input, 0, 0, "content", System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_id", System.Data.SqlDbType.BigInt, 0, System.Data.ParameterDirection.Input, 0, 0, "id", System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new System.Data.SqlClient.SqlParameter("@IsNull_picText", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, 0, 0, "picText", System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_picText", System.Data.SqlDbType.NVarChar, 0, System.Data.ParameterDirection.Input, 0, 0, "picText", System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new System.Data.SqlClient.SqlParameter("@id", System.Data.SqlDbType.BigInt, 8, System.Data.ParameterDirection.Input, 0, 0, "id", System.Data.DataRowVersion.Current, false, null, "", "", "")); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] private void InitConnection() { this._connection = new System.Data.SqlClient.SqlConnection(); this._connection.ConnectionString = global::DALDataSet.Properties.Settings.Default.myPageConnectionString1; } [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 id, pic, picText, [content]\r\nFROM blogNote\r\nORDER BY id DESC"; 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 SetData(AccessBlog.blogNote1DataTable 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 AccessBlog.blogNote1DataTable GetData() { this.Adapter.SelectCommand = this.CommandCollection[0]; AccessBlog.blogNote1DataTable dataTable = new AccessBlog.blogNote1DataTable(); this.Adapter.Fill(dataTable); return dataTable; } [System.Diagnostics.DebuggerNonUserCodeAttribute()] [System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] public virtual int Update(AccessBlog.blogNote1DataTable dataTable) { return this.Adapter.Update(dataTable); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] [System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] public virtual int Update(AccessBlog dataSet) { return this.Adapter.Update(dataSet, "blogNote1"); } [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.Delete, true)] public virtual int Delete(long Original_id, string Original_picText) { this.Adapter.DeleteCommand.Parameters[0].Value = ((long)(Original_id)); if ((Original_picText == null)) { this.Adapter.DeleteCommand.Parameters[1].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[2].Value = System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[1].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[2].Value = ((string)(Original_picText)); } System.Data.ConnectionState previousConnectionState = this.Adapter.DeleteCommand.Connection.State; if (((this.Adapter.DeleteCommand.Connection.State & System.Data.ConnectionState.Open) != System.Data.ConnectionState.Open)) { this.Adapter.DeleteCommand.Connection.Open(); } try { int returnValue = this.Adapter.DeleteCommand.ExecuteNonQuery(); return returnValue; } finally { if ((previousConnectionState == System.Data.ConnectionState.Closed)) { this.Adapter.DeleteCommand.Connection.Close(); } } } [System.Diagnostics.DebuggerNonUserCodeAttribute()] [System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] [System.ComponentModel.DataObjectMethodAttribute(System.ComponentModel.DataObjectMethodType.Insert, true)] public virtual int Insert(string pic, string picText, string content) { if ((pic == null)) { this.Adapter.InsertCommand.Parameters[0].Value = System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[0].Value = ((string)(pic)); } if ((picText == null)) { this.Adapter.InsertCommand.Parameters[1].Value = System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[1].Value = ((string)(picText)); } if ((content == null)) { this.Adapter.InsertCommand.Parameters[2].Value = System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[2].Value = ((string)(content)); } 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.Diagnostics.DebuggerNonUserCodeAttribute()] [System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] [System.ComponentModel.DataObjectMethodAttribute(System.ComponentModel.DataObjectMethodType.Update, true)] public virtual int Update(string pic, string picText, string content, long Original_id, string Original_picText, int id) { if ((pic == null)) { this.Adapter.UpdateCommand.Parameters[0].Value = System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[0].Value = ((string)(pic)); } if ((picText == null)) { this.Adapter.UpdateCommand.Parameters[1].Value = System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[1].Value = ((string)(picText)); } if ((content == null)) { this.Adapter.UpdateCommand.Parameters[2].Value = System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[2].Value = ((string)(content)); } this.Adapter.UpdateCommand.Parameters[3].Value = ((long)(Original_id)); if ((Original_picText == null)) { this.Adapter.UpdateCommand.Parameters[4].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[5].Value = System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[4].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[5].Value = ((string)(Original_picText)); } this.Adapter.UpdateCommand.Parameters[6].Value = ((int)(id)); System.Data.ConnectionState previousConnectionState = this.Adapter.UpdateCommand.Connection.State; if (((this.Adapter.UpdateCommand.Connection.State & System.Data.ConnectionState.Open) != System.Data.ConnectionState.Open)) { this.Adapter.UpdateCommand.Connection.Open(); } try { int returnValue = this.Adapter.UpdateCommand.ExecuteNonQuery(); return returnValue; } finally { if ((previousConnectionState == System.Data.ConnectionState.Closed)) { this.Adapter.UpdateCommand.Connection.Close(); } } } } } #pragma warning restore 1591
相关源码
- HTML5响应式在线教育培训类企业商学院整站系统2020-10-21
- 图书管理系统2020-10-17
- 开单大师学习版2020-09-02
- 花语花店销售网站源码2020-08-03
- LONE网上购书源码2020-08-01
- 开单大师学习版源码2020-07-21
关于我们 | 顾问团队 | 发展历程 | 联系我们 | 源码上传
联系电话(Tel):4008-010-151(免长途) 企业QQ:2852517674
地址:北京市海淀区中关村鼎好大厦A座二层 邮编:100080
Room A-801,Dinghao Building,Zhongguancun,Beijing,China,100080
51Aspx.com 版权所有 CopyRight © 2006-2015. 京ICP备09089570号 | 京公网安备11010702000869号
联系电话(Tel):4008-010-151(免长途) 企业QQ:2852517674
地址:北京市海淀区中关村鼎好大厦A座二层 邮编:100080
Room A-801,Dinghao Building,Zhongguancun,Beijing,China,100080
51Aspx.com 版权所有 CopyRight © 2006-2015. 京ICP备09089570号 | 京公网安备11010702000869号