private void GetObjectSchema(string tableName)
        {
            ValidateDatabase();

            var factory = new AccessObjectSQLFactory() { ObjectName = tableName };
            this.accessObjectDataGridView1.Database = this.Database;
            this.accessObjectDataGridView1.Query = new StandardQueryBuilder(factory);
            this.accessObjectDataGridView1.Execute();

            this.accessObjectDataGridView2.DataSource = ((DataTable)this.accessObjectDataGridView1.DataSource).Copy();
        }
 private void GetObjectSchema(string tableName)
 {
     var factory = new AccessObjectSQLFactory() { ObjectName = tableName };
     this.accessObjectDataGridView1.Database = db;
     this.accessObjectDataGridView1.Query = new StandardQueryBuilder(factory);
     this.accessObjectDataGridView1.Execute();
 }