diff --git a/DBMS/FullStack/Lab8.md b/DBMS/FullStack/Lab8.md
deleted file mode 100644
index 0d2c4a4..0000000
--- a/DBMS/FullStack/Lab8.md
+++ /dev/null
@@ -1,20 +0,0 @@
-Visual Studio + SQLPlus Integration.
-
-Integration code:
-```cs
-using System;
-using System.Data.SqlClient;
-
-class Program
-{
- static void Main(string[] args)
- {
- string connectionString = "Data Source=(local);Initial Catalog=Northwind;Integrated Security=True";
- using (SqlConnection connection = new SqlConnection(connectionString))
- {
- connection.Open();
- Console.WriteLine("Connection opened successfully.");
- }
- }
-}
-```
diff --git a/DBMS/FullStack/Week8.7z b/DBMS/FullStack/Week8.7z
deleted file mode 100644
index 9889c31..0000000
Binary files a/DBMS/FullStack/Week8.7z and /dev/null differ
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1.sln b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1.sln
new file mode 100644
index 0000000..45c58a6
--- /dev/null
+++ b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1.sln
@@ -0,0 +1,32 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio 2012
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TheIntegration", "WindowsFormsApplication1\TheIntegration.csproj", "{74FCF937-758D-48A6-80F0-363DDFA1D5C2}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Debug|x64 = Debug|x64
+ Debug|x86 = Debug|x86
+ Release|Any CPU = Release|Any CPU
+ Release|x64 = Release|x64
+ Release|x86 = Release|x86
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {74FCF937-758D-48A6-80F0-363DDFA1D5C2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {74FCF937-758D-48A6-80F0-363DDFA1D5C2}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {74FCF937-758D-48A6-80F0-363DDFA1D5C2}.Debug|x64.ActiveCfg = Debug|x64
+ {74FCF937-758D-48A6-80F0-363DDFA1D5C2}.Debug|x64.Build.0 = Debug|x64
+ {74FCF937-758D-48A6-80F0-363DDFA1D5C2}.Debug|x86.ActiveCfg = Debug|x86
+ {74FCF937-758D-48A6-80F0-363DDFA1D5C2}.Debug|x86.Build.0 = Debug|x86
+ {74FCF937-758D-48A6-80F0-363DDFA1D5C2}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {74FCF937-758D-48A6-80F0-363DDFA1D5C2}.Release|Any CPU.Build.0 = Release|Any CPU
+ {74FCF937-758D-48A6-80F0-363DDFA1D5C2}.Release|x64.ActiveCfg = Release|x64
+ {74FCF937-758D-48A6-80F0-363DDFA1D5C2}.Release|x64.Build.0 = Release|x64
+ {74FCF937-758D-48A6-80F0-363DDFA1D5C2}.Release|x86.ActiveCfg = Release|x86
+ {74FCF937-758D-48A6-80F0-363DDFA1D5C2}.Release|x86.Build.0 = Release|x86
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+EndGlobal
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1.v11.suo b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1.v11.suo
new file mode 100644
index 0000000..fac3ace
Binary files /dev/null and b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1.v11.suo differ
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/App.config b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/App.config
new file mode 100644
index 0000000..fad249e
--- /dev/null
+++ b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/App.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/Form1.Designer.cs b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/Form1.Designer.cs
new file mode 100644
index 0000000..4350da7
--- /dev/null
+++ b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/Form1.Designer.cs
@@ -0,0 +1,189 @@
+namespace WindowsFormsApplication1
+{
+ partial class Form1
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ this.button1 = new System.Windows.Forms.Button();
+ this.label1 = new System.Windows.Forms.Label();
+ this.button2 = new System.Windows.Forms.Button();
+ this.textBox1 = new System.Windows.Forms.TextBox();
+ this.textBox2 = new System.Windows.Forms.TextBox();
+ this.textBox3 = new System.Windows.Forms.TextBox();
+ this.textBox4 = new System.Windows.Forms.TextBox();
+ this.button3 = new System.Windows.Forms.Button();
+ this.button4 = new System.Windows.Forms.Button();
+ this.button5 = new System.Windows.Forms.Button();
+ this.button6 = new System.Windows.Forms.Button();
+ this.SuspendLayout();
+ //
+ // button1
+ //
+ this.button1.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button1.Location = new System.Drawing.Point(454, 90);
+ this.button1.Name = "button1";
+ this.button1.Size = new System.Drawing.Size(88, 24);
+ this.button1.TabIndex = 0;
+ this.button1.Text = "ESTABLISH CONNECTION";
+ this.button1.UseVisualStyleBackColor = true;
+ this.button1.Click += new System.EventHandler(this.button1_Click);
+ //
+ // label1
+ //
+ this.label1.AutoSize = true;
+ this.label1.Font = new System.Drawing.Font("Palatino Linotype", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label1.Location = new System.Drawing.Point(154, 79);
+ this.label1.Name = "label1";
+ this.label1.Size = new System.Drawing.Size(294, 44);
+ this.label1.TabIndex = 1;
+ this.label1.Text = "ConnectWithDB™️";
+ //
+ // button2
+ //
+ this.button2.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button2.Location = new System.Drawing.Point(309, 136);
+ this.button2.Name = "button2";
+ this.button2.Size = new System.Drawing.Size(139, 32);
+ this.button2.TabIndex = 2;
+ this.button2.Text = "INITIALISE DATA";
+ this.button2.UseVisualStyleBackColor = true;
+ this.button2.Click += new System.EventHandler(this.button2_Click);
+ //
+ // textBox1
+ //
+ this.textBox1.Location = new System.Drawing.Point(56, 212);
+ this.textBox1.Name = "textBox1";
+ this.textBox1.Size = new System.Drawing.Size(166, 20);
+ this.textBox1.TabIndex = 3;
+ //
+ // textBox2
+ //
+ this.textBox2.Location = new System.Drawing.Point(228, 212);
+ this.textBox2.Name = "textBox2";
+ this.textBox2.Size = new System.Drawing.Size(187, 20);
+ this.textBox2.TabIndex = 4;
+ //
+ // textBox3
+ //
+ this.textBox3.Location = new System.Drawing.Point(421, 212);
+ this.textBox3.Name = "textBox3";
+ this.textBox3.Size = new System.Drawing.Size(154, 20);
+ this.textBox3.TabIndex = 5;
+ //
+ // textBox4
+ //
+ this.textBox4.Location = new System.Drawing.Point(581, 212);
+ this.textBox4.Name = "textBox4";
+ this.textBox4.Size = new System.Drawing.Size(131, 20);
+ this.textBox4.TabIndex = 6;
+ //
+ // button3
+ //
+ this.button3.Location = new System.Drawing.Point(454, 136);
+ this.button3.Name = "button3";
+ this.button3.Size = new System.Drawing.Size(52, 32);
+ this.button3.TabIndex = 7;
+ this.button3.Text = "▶️▶️";
+ this.button3.UseVisualStyleBackColor = true;
+ this.button3.Click += new System.EventHandler(this.button3_Click);
+ //
+ // button4
+ //
+ this.button4.Location = new System.Drawing.Point(251, 136);
+ this.button4.Name = "button4";
+ this.button4.Size = new System.Drawing.Size(52, 32);
+ this.button4.TabIndex = 8;
+ this.button4.Text = "◀️◀️";
+ this.button4.UseVisualStyleBackColor = true;
+ this.button4.Click += new System.EventHandler(this.button4_Click);
+ //
+ // button5
+ //
+ this.button5.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
+ this.button5.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button5.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
+ this.button5.Location = new System.Drawing.Point(251, 260);
+ this.button5.Name = "button5";
+ this.button5.Size = new System.Drawing.Size(75, 34);
+ this.button5.TabIndex = 9;
+ this.button5.Text = "INSERT";
+ this.button5.UseVisualStyleBackColor = false;
+ this.button5.Click += new System.EventHandler(this.button5_Click);
+ //
+ // button6
+ //
+ this.button6.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
+ this.button6.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button6.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
+ this.button6.Location = new System.Drawing.Point(332, 260);
+ this.button6.Name = "button6";
+ this.button6.Size = new System.Drawing.Size(75, 34);
+ this.button6.TabIndex = 10;
+ this.button6.Text = "UPDATE";
+ this.button6.UseVisualStyleBackColor = false;
+ this.button6.Click += new System.EventHandler(this.button6_Click);
+ //
+ // Form1
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(738, 457);
+ this.Controls.Add(this.button6);
+ this.Controls.Add(this.button5);
+ this.Controls.Add(this.button4);
+ this.Controls.Add(this.button3);
+ this.Controls.Add(this.textBox4);
+ this.Controls.Add(this.textBox3);
+ this.Controls.Add(this.textBox2);
+ this.Controls.Add(this.textBox1);
+ this.Controls.Add(this.button2);
+ this.Controls.Add(this.label1);
+ this.Controls.Add(this.button1);
+ this.Name = "Form1";
+ this.Text = "Form1";
+ this.Load += new System.EventHandler(this.Form1_Load);
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Button button1;
+ private System.Windows.Forms.Label label1;
+ private System.Windows.Forms.Button button2;
+ private System.Windows.Forms.TextBox textBox1;
+ private System.Windows.Forms.TextBox textBox2;
+ private System.Windows.Forms.TextBox textBox3;
+ private System.Windows.Forms.TextBox textBox4;
+ private System.Windows.Forms.Button button3;
+ private System.Windows.Forms.Button button4;
+ private System.Windows.Forms.Button button5;
+ private System.Windows.Forms.Button button6;
+ }
+}
+
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/Form1.cs b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/Form1.cs
new file mode 100644
index 0000000..98313fa
--- /dev/null
+++ b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/Form1.cs
@@ -0,0 +1,175 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+using Oracle.DataAccess.Client;
+using Oracle.DataAccess.Types;
+
+namespace WindowsFormsApplication1
+{
+ public partial class Form1 : Form
+ {
+ OracleConnection conn;
+ OracleCommand comm;
+ OracleDataAdapter da;
+ DataSet ds;
+ DataTable dt;
+ DataRow dr;
+ int i = 0;
+
+ public Form1()
+ {
+ InitializeComponent();
+ }
+
+ public void connect()
+ {
+ string constring = "DATA SOURCE=172.16.54.24:1521/ICTORCL;USER ID=CCE230953344;PASSWORD=student";
+ if (conn == null)
+ conn = new OracleConnection(constring); // Assuming 'constring' is properly defined
+ if (conn.State != ConnectionState.Open)
+ conn.Open();
+ }
+
+ private void Form1_Load(object sender, EventArgs e)
+ {
+ connect();
+ }
+
+ private void button1_Click(object sender, EventArgs e)
+ {
+ connect();
+ MessageBox.Show("CONNECTION ESTABLISHED.");
+ }
+
+ // SHOW TABLE ELEMENTS
+ private void button2_Click(object sender, EventArgs e)
+ {
+ comm = new OracleCommand();
+ comm.CommandText = "SELECT * FROM accident";
+ comm.CommandType = CommandType.Text;
+ ds = new DataSet();
+ da = new OracleDataAdapter(comm.CommandText, conn);
+ da.Fill(ds, "accident");
+ dt = ds.Tables["accident"];
+ int t = dt.Rows.Count;
+ MessageBox.Show(t.ToString());
+ dr = dt.Rows[i];
+ textBox1.Text = dr["REPORT_NUMBER"].ToString();
+ textBox2.Text = dr["ACCD_DATE"].ToString();
+ textBox3.Text = dr["LOCATION"].ToString();
+ textBox4.Text = dr["TOTAL_DAMAGE"].ToString();
+ conn.Close();
+ }
+
+ // NEXT
+ private void button3_Click(object sender, EventArgs e)
+ {
+ i++;
+ if (i >= dt.Rows.Count) i = 0;
+ dr = dt.Rows[i];
+ textBox1.Text = dr["REPORT_NUMBER"].ToString();
+ textBox2.Text = dr["ACCD_DATE"].ToString();
+ textBox3.Text = dr["LOCATION"].ToString();
+ textBox4.Text = dr["TOTAL_DAMAGE"].ToString();
+ }
+
+ // PREVIOUS
+ private void button4_Click(object sender, EventArgs e)
+ {
+ i--;
+ if (i < 0) i = dt.Rows.Count - 1;
+ dr = dt.Rows[i];
+ textBox1.Text = dr["REPORT_NUMBER"].ToString();
+ textBox2.Text = dr["ACCD_DATE"].ToString();
+ textBox3.Text = dr["LOCATION"].ToString();
+ textBox4.Text = dr["TOTAL_DAMAGE"].ToString();
+ }
+
+ // INSERT INTO TABLE ACCIDENT
+ private void button5_Click(object sender, EventArgs e)
+ {
+ // Parse inputs to match database column types
+ int reportNumber = int.Parse(textBox1.Text);
+ DateTime accDate = DateTime.Parse(textBox2.Text);
+ int totalDamage = int.Parse(textBox4.Text);
+
+ try
+ {
+ if (conn == null || conn.State != ConnectionState.Open)
+ connect();
+
+ OracleCommand cm = new OracleCommand();
+ cm.Connection = conn;
+ cm.CommandText = "INSERT INTO accident (REPORT_NUMBER, ACCD_DATE, LOCATION, TOTAL_DAMAGE) " +
+ "VALUES (:reportNumber, :accDate, :location, :totalDamage)";
+
+ cm.Parameters.Add(new OracleParameter("reportNumber", OracleDbType.Int32) { Value = reportNumber });
+ cm.Parameters.Add(new OracleParameter("accDate", OracleDbType.Date) { Value = accDate });
+ cm.Parameters.Add(new OracleParameter("location", textBox3.Text));
+ cm.Parameters.Add(new OracleParameter("totalDamage", OracleDbType.Int32) { Value = totalDamage });
+
+ cm.ExecuteNonQuery();
+ MessageBox.Show("Record inserted successfully!");
+ }
+ catch (Exception ex)
+ {
+ MessageBox.Show("Error: " + ex.Message);
+ }
+ finally
+ {
+ if (conn.State == ConnectionState.Open)
+ conn.Close();
+ }
+ }
+
+ // UPDATE CLICK
+ private void button6_Click(object sender, EventArgs e)
+ {
+ try
+ {
+ if (conn == null || conn.State != ConnectionState.Open)
+ connect();
+
+ int reportNumber = int.Parse(textBox1.Text);
+ DateTime accDate = DateTime.Parse(textBox2.Text); // Ensure this parses correctly
+ string location = textBox3.Text;
+ int totalDamage = int.Parse(textBox4.Text);
+
+ OracleCommand cm = new OracleCommand();
+ cm.Connection = conn;
+ cm.CommandText = "UPDATE accident SET ACCD_DATE = :edate, " +
+ "LOCATION = :eloc, TOTAL_DAMAGE = :edamage " +
+ "WHERE REPORT_NUMBER = :erep";
+
+ // Add parameters with explicit OracleDbType
+ cm.Parameters.Add(new OracleParameter("erep", OracleDbType.Int32) { Value = reportNumber });
+ cm.Parameters.Add(new OracleParameter("edate", OracleDbType.Date) { Value = accDate }); // Ensure correct type
+ cm.Parameters.Add(new OracleParameter("eloc", OracleDbType.Varchar2) { Value = location });
+ cm.Parameters.Add(new OracleParameter("edamage", OracleDbType.Int32) { Value = totalDamage });
+
+ cm.ExecuteNonQuery();
+ MessageBox.Show("Record updated successfully!");
+ }
+ catch (FormatException ex)
+ {
+ MessageBox.Show("Invalid input format: " + ex.Message);
+ }
+ catch (Exception ex)
+ {
+ MessageBox.Show("Error: " + ex.Message);
+ }
+ finally
+ {
+ if (conn != null && conn.State == ConnectionState.Open)
+ conn.Close();
+ }
+ }
+ }
+}
+
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/Form1.resx b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/Form1.resx
new file mode 100644
index 0000000..29dcb1b
--- /dev/null
+++ b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/Form1.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/Program.cs b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/Program.cs
new file mode 100644
index 0000000..61a26a0
--- /dev/null
+++ b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/Program.cs
@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace WindowsFormsApplication1
+{
+ static class Program
+ {
+ ///
+ /// The main entry point for the application.
+ ///
+ [STAThread]
+ static void Main()
+ {
+ Application.EnableVisualStyles();
+ Application.SetCompatibleTextRenderingDefault(false);
+ Application.Run(new Form1());
+ }
+ }
+}
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/Properties/AssemblyInfo.cs b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..72cd3ee
--- /dev/null
+++ b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/Properties/AssemblyInfo.cs
@@ -0,0 +1,36 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("WindowsFormsApplication1")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("WindowsFormsApplication1")]
+[assembly: AssemblyCopyright("Copyright © 2025")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("fed610f2-6f88-4cbb-913e-96e5cfacd49b")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/Properties/Resources.Designer.cs b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/Properties/Resources.Designer.cs
new file mode 100644
index 0000000..501383d
--- /dev/null
+++ b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/Properties/Resources.Designer.cs
@@ -0,0 +1,71 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace WindowsFormsApplication1.Properties
+{
+
+
+ ///
+ /// A strongly-typed resource class, for looking up localized strings, etc.
+ ///
+ // This class was auto-generated by the StronglyTypedResourceBuilder
+ // class via a tool like ResGen or Visual Studio.
+ // To add or remove a member, edit your .ResX file then rerun ResGen
+ // with the /str option, or rebuild your VS project.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class Resources
+ {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Resources()
+ {
+ }
+
+ ///
+ /// Returns the cached ResourceManager instance used by this class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Resources.ResourceManager ResourceManager
+ {
+ get
+ {
+ if ((resourceMan == null))
+ {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("WindowsFormsApplication1.Properties.Resources", typeof(Resources).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ ///
+ /// Overrides the current thread's CurrentUICulture property for all
+ /// resource lookups using this strongly typed resource class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture
+ {
+ get
+ {
+ return resourceCulture;
+ }
+ set
+ {
+ resourceCulture = value;
+ }
+ }
+ }
+}
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/Properties/Resources.resx b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/Properties/Resources.resx
new file mode 100644
index 0000000..ffecec8
--- /dev/null
+++ b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/Properties/Resources.resx
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/Properties/Settings.Designer.cs b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/Properties/Settings.Designer.cs
new file mode 100644
index 0000000..9e20a2f
--- /dev/null
+++ b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/Properties/Settings.Designer.cs
@@ -0,0 +1,30 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace WindowsFormsApplication1.Properties
+{
+
+
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
+ internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
+ {
+
+ private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
+
+ public static Settings Default
+ {
+ get
+ {
+ return defaultInstance;
+ }
+ }
+ }
+}
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/Properties/Settings.settings b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/Properties/Settings.settings
new file mode 100644
index 0000000..abf36c5
--- /dev/null
+++ b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/Properties/Settings.settings
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/TheIntegration.csproj b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/TheIntegration.csproj
new file mode 100644
index 0000000..e3272ae
--- /dev/null
+++ b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/TheIntegration.csproj
@@ -0,0 +1,129 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {74FCF937-758D-48A6-80F0-363DDFA1D5C2}
+ WinExe
+ Properties
+ WindowsFormsApplication1
+ WindowsFormsApplication1
+ v4.5
+ 512
+
+
+ AnyCPU
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ AnyCPU
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+ true
+ bin\x64\Debug\
+ DEBUG;TRACE
+ full
+ x64
+ prompt
+ MinimumRecommendedRules.ruleset
+ true
+
+
+ bin\x64\Release\
+ TRACE
+ true
+ pdbonly
+ x64
+ prompt
+ MinimumRecommendedRules.ruleset
+ true
+
+
+ true
+ bin\x86\Debug\
+ DEBUG;TRACE
+ full
+ x86
+ prompt
+ MinimumRecommendedRules.ruleset
+ true
+
+
+ bin\x86\Release\
+ TRACE
+ true
+ pdbonly
+ x86
+ prompt
+ MinimumRecommendedRules.ruleset
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Form
+
+
+ Form1.cs
+
+
+
+
+ Form1.cs
+
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+ Designer
+
+
+ True
+ Resources.resx
+
+
+ SettingsSingleFileGenerator
+ Settings.Designer.cs
+
+
+ True
+ Settings.settings
+ True
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/Oracle.DataAccess.dll b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/Oracle.DataAccess.dll
new file mode 100644
index 0000000..9638a50
Binary files /dev/null and b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/Oracle.DataAccess.dll differ
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/WindowsFormsApplication1.exe b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/WindowsFormsApplication1.exe
new file mode 100755
index 0000000..557d5b9
Binary files /dev/null and b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/WindowsFormsApplication1.exe differ
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/WindowsFormsApplication1.exe.config b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/WindowsFormsApplication1.exe.config
new file mode 100644
index 0000000..fad249e
--- /dev/null
+++ b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/WindowsFormsApplication1.exe.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/WindowsFormsApplication1.pdb b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/WindowsFormsApplication1.pdb
new file mode 100644
index 0000000..fcb7b01
Binary files /dev/null and b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/WindowsFormsApplication1.pdb differ
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/WindowsFormsApplication1.vshost.exe b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/WindowsFormsApplication1.vshost.exe
new file mode 100755
index 0000000..8c84517
Binary files /dev/null and b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/WindowsFormsApplication1.vshost.exe differ
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/WindowsFormsApplication1.vshost.exe.config b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/WindowsFormsApplication1.vshost.exe.config
new file mode 100644
index 0000000..fad249e
--- /dev/null
+++ b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/WindowsFormsApplication1.vshost.exe.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/WindowsFormsApplication1.vshost.exe.manifest b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/WindowsFormsApplication1.vshost.exe.manifest
new file mode 100644
index 0000000..f96b1d6
--- /dev/null
+++ b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/WindowsFormsApplication1.vshost.exe.manifest
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/x64/Debug/WindowsFormsApplication1.exe b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/x64/Debug/WindowsFormsApplication1.exe
new file mode 100755
index 0000000..3d432db
Binary files /dev/null and b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/x64/Debug/WindowsFormsApplication1.exe differ
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/x64/Debug/WindowsFormsApplication1.exe.config b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/x64/Debug/WindowsFormsApplication1.exe.config
new file mode 100644
index 0000000..fad249e
--- /dev/null
+++ b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/x64/Debug/WindowsFormsApplication1.exe.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/x64/Debug/WindowsFormsApplication1.pdb b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/x64/Debug/WindowsFormsApplication1.pdb
new file mode 100644
index 0000000..d394ad7
Binary files /dev/null and b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/x64/Debug/WindowsFormsApplication1.pdb differ
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/x64/Debug/WindowsFormsApplication1.vshost.exe b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/x64/Debug/WindowsFormsApplication1.vshost.exe
new file mode 100755
index 0000000..3c5dcfb
Binary files /dev/null and b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/x64/Debug/WindowsFormsApplication1.vshost.exe differ
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/x64/Debug/WindowsFormsApplication1.vshost.exe.config b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/x64/Debug/WindowsFormsApplication1.vshost.exe.config
new file mode 100644
index 0000000..fad249e
--- /dev/null
+++ b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/x64/Debug/WindowsFormsApplication1.vshost.exe.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/x86/Debug/WindowsFormsApplication1.exe b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/x86/Debug/WindowsFormsApplication1.exe
new file mode 100755
index 0000000..320406d
Binary files /dev/null and b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/x86/Debug/WindowsFormsApplication1.exe differ
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/x86/Debug/WindowsFormsApplication1.exe.config b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/x86/Debug/WindowsFormsApplication1.exe.config
new file mode 100644
index 0000000..fad249e
--- /dev/null
+++ b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/x86/Debug/WindowsFormsApplication1.exe.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/x86/Debug/WindowsFormsApplication1.pdb b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/x86/Debug/WindowsFormsApplication1.pdb
new file mode 100644
index 0000000..ddc7133
Binary files /dev/null and b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/x86/Debug/WindowsFormsApplication1.pdb differ
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/x86/Debug/WindowsFormsApplication1.vshost.exe b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/x86/Debug/WindowsFormsApplication1.vshost.exe
new file mode 100755
index 0000000..8c84517
Binary files /dev/null and b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/x86/Debug/WindowsFormsApplication1.vshost.exe differ
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/x86/Debug/WindowsFormsApplication1.vshost.exe.config b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/x86/Debug/WindowsFormsApplication1.vshost.exe.config
new file mode 100644
index 0000000..fad249e
--- /dev/null
+++ b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/bin/x86/Debug/WindowsFormsApplication1.vshost.exe.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/DesignTimeResolveAssemblyReferences.cache
new file mode 100644
index 0000000..8a5f05e
Binary files /dev/null and b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
new file mode 100644
index 0000000..c5ead75
Binary files /dev/null and b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
new file mode 100644
index 0000000..e69de29
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
new file mode 100644
index 0000000..e69de29
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
new file mode 100644
index 0000000..e69de29
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/WindowsFormsApplication1.Form1.resources b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/WindowsFormsApplication1.Form1.resources
new file mode 100644
index 0000000..6c05a97
Binary files /dev/null and b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/WindowsFormsApplication1.Form1.resources differ
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/WindowsFormsApplication1.Properties.Resources.resources b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/WindowsFormsApplication1.Properties.Resources.resources
new file mode 100644
index 0000000..6c05a97
Binary files /dev/null and b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/WindowsFormsApplication1.Properties.Resources.resources differ
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/WindowsFormsApplication1.csproj.FileListAbsolute.txt b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/WindowsFormsApplication1.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..74a12d8
--- /dev/null
+++ b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/WindowsFormsApplication1.csproj.FileListAbsolute.txt
@@ -0,0 +1,10 @@
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.exe.config
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\obj\Debug\WindowsFormsApplication1.csprojResolveAssemblyReference.cache
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\obj\Debug\WindowsFormsApplication1.Form1.resources
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\obj\Debug\WindowsFormsApplication1.Properties.Resources.resources
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\obj\Debug\WindowsFormsApplication1.csproj.GenerateResource.Cache
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.exe
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.pdb
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\Oracle.DataAccess.dll
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\obj\Debug\WindowsFormsApplication1.exe
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\obj\Debug\WindowsFormsApplication1.pdb
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/WindowsFormsApplication1.csproj.GenerateResource.Cache b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/WindowsFormsApplication1.csproj.GenerateResource.Cache
new file mode 100644
index 0000000..4e319d4
Binary files /dev/null and b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/WindowsFormsApplication1.csproj.GenerateResource.Cache differ
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/WindowsFormsApplication1.csprojResolveAssemblyReference.cache b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/WindowsFormsApplication1.csprojResolveAssemblyReference.cache
new file mode 100644
index 0000000..a412a3a
Binary files /dev/null and b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/WindowsFormsApplication1.csprojResolveAssemblyReference.cache differ
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/WindowsFormsApplication1.exe b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/WindowsFormsApplication1.exe
new file mode 100755
index 0000000..557d5b9
Binary files /dev/null and b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/WindowsFormsApplication1.exe differ
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/WindowsFormsApplication1.pdb b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/WindowsFormsApplication1.pdb
new file mode 100644
index 0000000..fcb7b01
Binary files /dev/null and b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/WindowsFormsApplication1.pdb differ
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/build.force b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/Debug/build.force
new file mode 100644
index 0000000..e69de29
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache
new file mode 100644
index 0000000..b9fb4eb
Binary files /dev/null and b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x64/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x64/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
new file mode 100644
index 0000000..e69de29
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x64/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x64/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
new file mode 100644
index 0000000..e69de29
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x64/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x64/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
new file mode 100644
index 0000000..e69de29
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x64/Debug/WindowsFormsApplication1.Form1.resources b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x64/Debug/WindowsFormsApplication1.Form1.resources
new file mode 100644
index 0000000..6c05a97
Binary files /dev/null and b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x64/Debug/WindowsFormsApplication1.Form1.resources differ
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x64/Debug/WindowsFormsApplication1.Properties.Resources.resources b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x64/Debug/WindowsFormsApplication1.Properties.Resources.resources
new file mode 100644
index 0000000..6c05a97
Binary files /dev/null and b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x64/Debug/WindowsFormsApplication1.Properties.Resources.resources differ
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x64/Debug/WindowsFormsApplication1.csproj.FileListAbsolute.txt b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x64/Debug/WindowsFormsApplication1.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..fd2fed1
--- /dev/null
+++ b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x64/Debug/WindowsFormsApplication1.csproj.FileListAbsolute.txt
@@ -0,0 +1,9 @@
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\bin\x64\Debug\WindowsFormsApplication1.exe.config
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\bin\x64\Debug\WindowsFormsApplication1.exe
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\bin\x64\Debug\WindowsFormsApplication1.pdb
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\obj\x64\Debug\WindowsFormsApplication1.csprojResolveAssemblyReference.cache
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\obj\x64\Debug\WindowsFormsApplication1.Form1.resources
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\obj\x64\Debug\WindowsFormsApplication1.Properties.Resources.resources
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\obj\x64\Debug\WindowsFormsApplication1.csproj.GenerateResource.Cache
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\obj\x64\Debug\WindowsFormsApplication1.exe
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\obj\x64\Debug\WindowsFormsApplication1.pdb
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x64/Debug/WindowsFormsApplication1.csproj.GenerateResource.Cache b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x64/Debug/WindowsFormsApplication1.csproj.GenerateResource.Cache
new file mode 100644
index 0000000..4e319d4
Binary files /dev/null and b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x64/Debug/WindowsFormsApplication1.csproj.GenerateResource.Cache differ
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x64/Debug/WindowsFormsApplication1.csprojResolveAssemblyReference.cache b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x64/Debug/WindowsFormsApplication1.csprojResolveAssemblyReference.cache
new file mode 100644
index 0000000..163da22
Binary files /dev/null and b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x64/Debug/WindowsFormsApplication1.csprojResolveAssemblyReference.cache differ
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x64/Debug/WindowsFormsApplication1.exe b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x64/Debug/WindowsFormsApplication1.exe
new file mode 100755
index 0000000..3d432db
Binary files /dev/null and b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x64/Debug/WindowsFormsApplication1.exe differ
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x64/Debug/WindowsFormsApplication1.pdb b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x64/Debug/WindowsFormsApplication1.pdb
new file mode 100644
index 0000000..d394ad7
Binary files /dev/null and b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x64/Debug/WindowsFormsApplication1.pdb differ
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache
new file mode 100644
index 0000000..83e719e
Binary files /dev/null and b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
new file mode 100644
index 0000000..e69de29
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
new file mode 100644
index 0000000..e69de29
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
new file mode 100644
index 0000000..e69de29
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/TheIntegration.csproj.FileListAbsolute.txt b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/TheIntegration.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..ae13e2a
--- /dev/null
+++ b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/TheIntegration.csproj.FileListAbsolute.txt
@@ -0,0 +1,8 @@
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\bin\x86\Debug\WindowsFormsApplication1.exe.config
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.exe
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.pdb
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.Form1.resources
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.Properties.Resources.resources
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\TheIntegration.csproj.GenerateResource.Cache
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\bin\x86\Debug\WindowsFormsApplication1.exe
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\bin\x86\Debug\WindowsFormsApplication1.pdb
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/TheIntegration.csproj.GenerateResource.Cache b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/TheIntegration.csproj.GenerateResource.Cache
new file mode 100644
index 0000000..8cc2875
Binary files /dev/null and b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/TheIntegration.csproj.GenerateResource.Cache differ
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/WindowsFormsApplication1.Form1.resources b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/WindowsFormsApplication1.Form1.resources
new file mode 100644
index 0000000..6c05a97
Binary files /dev/null and b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/WindowsFormsApplication1.Form1.resources differ
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/WindowsFormsApplication1.Properties.Resources.resources b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/WindowsFormsApplication1.Properties.Resources.resources
new file mode 100644
index 0000000..6c05a97
Binary files /dev/null and b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/WindowsFormsApplication1.Properties.Resources.resources differ
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/WindowsFormsApplication1.csproj.FileListAbsolute.txt b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/WindowsFormsApplication1.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..cd325ea
--- /dev/null
+++ b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/WindowsFormsApplication1.csproj.FileListAbsolute.txt
@@ -0,0 +1,8 @@
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\bin\x86\Debug\WindowsFormsApplication1.exe.config
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\bin\x86\Debug\WindowsFormsApplication1.exe
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\bin\x86\Debug\WindowsFormsApplication1.pdb
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.Form1.resources
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.Properties.Resources.resources
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.csproj.GenerateResource.Cache
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.exe
+D:\MIT-Curricular\DBMS\C-Sharp\Lab\Week8\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.pdb
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/WindowsFormsApplication1.csproj.GenerateResource.Cache b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/WindowsFormsApplication1.csproj.GenerateResource.Cache
new file mode 100644
index 0000000..77919f9
Binary files /dev/null and b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/WindowsFormsApplication1.csproj.GenerateResource.Cache differ
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/WindowsFormsApplication1.exe b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/WindowsFormsApplication1.exe
new file mode 100755
index 0000000..320406d
Binary files /dev/null and b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/WindowsFormsApplication1.exe differ
diff --git a/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/WindowsFormsApplication1.pdb b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/WindowsFormsApplication1.pdb
new file mode 100644
index 0000000..ddc7133
Binary files /dev/null and b/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/WindowsFormsApplication1.pdb differ