dataset merge

main
syneffort 3 years ago
parent dc97d5ce54
commit 5e3913a583
  1. 95
      MainApp/MainApp/Controls/DataSet_Merge_Control.Designer.cs
  2. 67
      MainApp/MainApp/Controls/DataSet_Merge_Control.cs
  3. 120
      MainApp/MainApp/Controls/DataSet_Merge_Control.resx
  4. 9
      MainApp/MainApp/MainApp.csproj
  5. 6
      MainApp/MainApp/MainForm.cs

@ -0,0 +1,95 @@

namespace MainApp.Controls
{
partial class DataSet_Merge_Control
{
/// <summary>
/// 필수 디자이너 변수입니다.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 사용 중인 모든 리소스를 정리합니다.
/// </summary>
/// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region 구성 요소 디자이너에서 생성한 코드
/// <summary>
/// 디자이너 지원에 필요한 메서드입니다.
/// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
/// </summary>
private void InitializeComponent()
{
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.bottomGridView = new System.Windows.Forms.DataGridView();
this.topGridView = new System.Windows.Forms.DataGridView();
this.tableLayoutPanel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.bottomGridView)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.topGridView)).BeginInit();
this.SuspendLayout();
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 1;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.Controls.Add(this.bottomGridView, 0, 1);
this.tableLayoutPanel1.Controls.Add(this.topGridView, 0, 0);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 2;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(371, 319);
this.tableLayoutPanel1.TabIndex = 1;
//
// bottomGridView
//
this.bottomGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.bottomGridView.Dock = System.Windows.Forms.DockStyle.Fill;
this.bottomGridView.Location = new System.Drawing.Point(3, 162);
this.bottomGridView.Name = "bottomGridView";
this.bottomGridView.RowTemplate.Height = 23;
this.bottomGridView.Size = new System.Drawing.Size(365, 154);
this.bottomGridView.TabIndex = 4;
//
// topGridView
//
this.topGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.topGridView.Dock = System.Windows.Forms.DockStyle.Fill;
this.topGridView.Location = new System.Drawing.Point(3, 3);
this.topGridView.Name = "topGridView";
this.topGridView.RowTemplate.Height = 23;
this.topGridView.Size = new System.Drawing.Size(365, 153);
this.topGridView.TabIndex = 3;
//
// DataSet_Merge_Control
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.tableLayoutPanel1);
this.Name = "DataSet_Merge_Control";
this.Size = new System.Drawing.Size(371, 319);
this.tableLayoutPanel1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.bottomGridView)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.topGridView)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
private System.Windows.Forms.DataGridView bottomGridView;
private System.Windows.Forms.DataGridView topGridView;
}
}

@ -0,0 +1,67 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace MainApp.Controls
{
public partial class DataSet_Merge_Control : UserControl
{
public DataSet_Merge_Control()
{
InitializeComponent();
InitInstance();
}
private void InitInstance()
{
if (!AdoClient.Instance.SetConnection("peacecloud.synology.me,21433", "Study", "study", "Study123$"))
{
MessageBox.Show("Cannot access database.");
return;
}
DoWork();
}
private void BindTableToGridView(DataGridView gridView, DataTable table)
{
gridView.SuspendLayout();
gridView.DataSource = table;
gridView.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.AllCells;
gridView.ResumeLayout();
}
private void DoWork()
{
DataSet dataSet_before = AdoClient.Instance.Query("SELECT * FROM EMPLOYEE");
Random rnd = new Random();
int[] idxArr = new int[3]
{
rnd.Next(1000, 2000),
rnd.Next(1000, 2000),
rnd.Next(1000, 2000)
};
foreach (int idx in idxArr)
{
AdoClient.Instance.NonQuery($"INSERT INTO EMPLOYEE (ENO, ENAME, JOB, HIREDATE) VALUES ({idx}, 'e{idx}', 'processed', '{DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")}')");
}
AdoClient.Instance.NonQuery($"DELETE FROM EMPLOYEE WHERE ENO = {idxArr[1]}");
DataSet dataSet_after = AdoClient.Instance.Query("SELECT * FROM EMPLOYEE");
dataSet_before.Merge(dataSet_after); // 동일한 구조의 테이블이라면 변경된 레코드 모두 반영됨
BindTableToGridView(topGridView, dataSet_before.Tables[0]);
BindTableToGridView(bottomGridView, dataSet_after.Tables[0]);
}
}
}

@ -0,0 +1,120 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>

@ -55,6 +55,12 @@
<ItemGroup>
<Compile Include="AdoClient.cs" />
<Compile Include="Client.cs" />
<Compile Include="Controls\DataSet_Merge_Control.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Include="Controls\DataSet_Merge_Control.Designer.cs">
<DependentUpon>DataSet_Merge_Control.cs</DependentUpon>
</Compile>
<Compile Include="Controls\Image_Insert_Select_Control.cs">
<SubType>UserControl</SubType>
</Compile>
@ -94,6 +100,9 @@
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Util.cs" />
<EmbeddedResource Include="Controls\DataSet_Merge_Control.resx">
<DependentUpon>DataSet_Merge_Control.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Controls\Image_Insert_Select_Control.resx">
<DependentUpon>Image_Insert_Select_Control.cs</DependentUpon>
</EmbeddedResource>

@ -46,7 +46,11 @@ namespace MainApp
//control.Dock = DockStyle.Fill;
//this.Controls.Add(control);
Image_Insert_Select_Control control = new Image_Insert_Select_Control();
//Image_Insert_Select_Control control = new Image_Insert_Select_Control();
//control.Dock = DockStyle.Fill;
//this.Controls.Add(control);
DataSet_Merge_Control control = new DataSet_Merge_Control();
control.Dock = DockStyle.Fill;
this.Controls.Add(control);
}

Loading…
Cancel
Save