Example #1
0
 /// <summary>
 /// 显示表列表
 /// </summary>
 void ShowTableList()
 {
     string where = this.textBox1.Text;
     BuildControl.SelectTable(where);
     this.dataGridView2.DataSource = null;
     this.dataGridView2.DataSource = BuildControl.CurrentTableList;
 }