multiple query

main
syneffort 3 years ago
parent 94d89be43d
commit 234dfcc52d
  1. 95
      MainApp/MainApp/Controls/Multiple_Query_Control.Designer.cs
  2. 52
      MainApp/MainApp/Controls/Multiple_Query_Control.cs
  3. 120
      MainApp/MainApp/Controls/Multiple_Query_Control.resx
  4. 9
      MainApp/MainApp/MainApp.csproj
  5. 6
      MainApp/MainApp/MainForm.cs

@ -0,0 +1,95 @@

namespace MainApp.Controls
{
partial class Multiple_Query_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.topGridView = new System.Windows.Forms.DataGridView();
this.bottomGridView = new System.Windows.Forms.DataGridView();
this.tableLayoutPanel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.topGridView)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.bottomGridView)).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(454, 400);
this.tableLayoutPanel1.TabIndex = 0;
//
// 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(448, 194);
this.topGridView.TabIndex = 3;
//
// 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, 203);
this.bottomGridView.Name = "bottomGridView";
this.bottomGridView.RowTemplate.Height = 23;
this.bottomGridView.Size = new System.Drawing.Size(448, 194);
this.bottomGridView.TabIndex = 4;
//
// UserControl1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.tableLayoutPanel1);
this.Name = "UserControl1";
this.Size = new System.Drawing.Size(454, 400);
this.tableLayoutPanel1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.topGridView)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.bottomGridView)).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,52 @@
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 Multiple_Query_Control : UserControl
{
public Multiple_Query_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()
{
string sql = @"SELECT * FROM EMPLOYEE;
SELECT E.ENAME, E.JOB, M.ENAME AS MANAGER, D.DNAME, D.LOC FROM EMPLOYEE AS E
LEFT JOIN EMPLOYEE AS M ON E.MANAGER = M.ENO
LEFT JOIN DEPARTMENT AS D ON E.DNO = D.DNO";
DataSet dataSet = AdoClient.Instance.Query(sql);
BindTableToGridView(topGridView, dataSet.Tables[0]);
BindTableToGridView(bottomGridView, dataSet.Tables[1]);
}
}
}

@ -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>

@ -58,6 +58,12 @@
<Compile Include="Controls\Paging_Control.Designer.cs"> <Compile Include="Controls\Paging_Control.Designer.cs">
<DependentUpon>Paging_Control.cs</DependentUpon> <DependentUpon>Paging_Control.cs</DependentUpon>
</Compile> </Compile>
<Compile Include="Controls\Multiple_Query_Control.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Include="Controls\Multiple_Query_Control.Designer.cs">
<DependentUpon>Multiple_Query_Control.cs</DependentUpon>
</Compile>
<Compile Include="MainForm.cs"> <Compile Include="MainForm.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
</Compile> </Compile>
@ -72,6 +78,9 @@
<EmbeddedResource Include="Controls\Paging_Control.resx"> <EmbeddedResource Include="Controls\Paging_Control.resx">
<DependentUpon>Paging_Control.cs</DependentUpon> <DependentUpon>Paging_Control.cs</DependentUpon>
</EmbeddedResource> </EmbeddedResource>
<EmbeddedResource Include="Controls\Multiple_Query_Control.resx">
<DependentUpon>Multiple_Query_Control.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="MainForm.resx"> <EmbeddedResource Include="MainForm.resx">
<DependentUpon>MainForm.cs</DependentUpon> <DependentUpon>MainForm.cs</DependentUpon>
</EmbeddedResource> </EmbeddedResource>

@ -34,7 +34,11 @@ namespace MainApp
//control.Dock = DockStyle.Fill; //control.Dock = DockStyle.Fill;
//this.Controls.Add(control); //this.Controls.Add(control);
Paging_Control control = new Paging_Control(); //Paging_Control control = new Paging_Control();
//control.Dock = DockStyle.Fill;
//this.Controls.Add(control);
Multiple_Query_Control control = new Multiple_Query_Control();
control.Dock = DockStyle.Fill; control.Dock = DockStyle.Fill;
this.Controls.Add(control); this.Controls.Add(control);
} }

Loading…
Cancel
Save