業者製作のAccessファイル+クライアントで、クライアントプログラム側で操作した結果が
Access内部でどう変更されるか調べようと思ったがAccessファイルが大きすぎた。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 |
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; /* Microsoft Access データベース エンジン 2010 再頒布可能コンポーネント (AccessDatabaseEngine.exe) ファイルがaccdb、ACE.OLEDB.12.0を利用する場合、 PCが32bitならインストールしないとプロバイダが見つからない。*/ namespace データベース差分チェック { public partial class Form1 : Form { UserDataSet uds1 = null; UserDataSet uds2 = null; public Form1() { InitializeComponent(); comboBox1.Enabled = false; comboBox2.Enabled = false; comboBox1.SelectedIndexChanged += new EventHandler(ComboxChange1); comboBox2.SelectedIndexChanged += new EventHandler(ComboxChange2); } private void ComboxChange1(object sender, EventArgs e) { if (uds1 == null) return; dataGridView1.DataSource = uds1.AccessDataSet.Tables[comboBox1.Text]; } private void ComboxChange2(object sender, EventArgs e) { if (uds2 == null) return; dataGridView2.DataSource = uds2.AccessDataSet.Tables[comboBox2.Text]; } private void button1_Click(object sender, EventArgs e) { OpenFileDialog ofd = new OpenFileDialog(); if (ofd.ShowDialog() == DialogResult.OK) { if (listBox1.Items.Count <= 1) { listBox1.Items.Add(ofd.FileName); } else { listBox1.Items[0] = listBox1.Items[1]; listBox1.Items.RemoveAt(1); listBox1.Items.Add(ofd.FileName); } } } private void button2_Click(object sender, EventArgs e) { comboBox1.Items.Clear(); comboBox2.Items.Clear(); if (listBox1.Items.Count == 1) { this.uds1 = new UserDataSet(listBox1.Items[0].ToString()); for (int i = 0; i < uds1.AccessDataSet.Tables.Count; i++) { comboBox1.Items.Add(uds1.AccessDataSet.Tables[i].TableName); } comboBox1.Enabled = true; } if (listBox1.Items.Count == 2) { this.uds2 = new UserDataSet(listBox1.Items[1].ToString()); for (int i = 0; i < uds2.AccessDataSet.Tables.Count; i++) { comboBox2.Items.Add(uds2.AccessDataSet.Tables[i].TableName); } comboBox2.Enabled = true; } } } public class UserDataSet { public DataSet AccessDataSet = new DataSet(); public UserDataSet(string filePath) { using (System.Data.OleDb.OleDbConnection con = new System.Data.OleDb.OleDbConnection( @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + filePath + ";JET OLEDB:Database Password=xxx")) { try { con.Open(); //fillの場合不要だがGetSchemaで必要。 DataTable dt = con.GetSchema("Tables"); foreach (DataRow r in dt.Rows) { string tableName = r["TABLE_NAME"].ToString(); //System.Diagnostics.Debug.Print(r["TABLE_NAME"].ToString()); if (tableName.Substring(0, 4) != "MSys") { using (System.Data.OleDb.OleDbDataAdapter da = new System.Data.OleDb.OleDbDataAdapter()) { System.Data.OleDb.OleDbCommand cmd = new System.Data.OleDb.OleDbCommand("select * from " + tableName, con); da.SelectCommand = cmd; DataTable newTable = new DataTable(tableName); AccessDataSet.Tables.Add(newTable); da.Fill(AccessDataSet.Tables[tableName]); } } } } catch(Exception e) { MessageBox.Show(e.Message); return; } finally { con.Close(); } } } } } |