C# ACCeSS Update 标准表达式中数据类型不匹配?

用C#写的程序, 目的是处理表格 Access, 想把表格中的某行删除! 然后在用Update,方法,总是报错!代码如下:
//删除空行,删除
private void button2_Click(object sender, EventArgs e)
{
//根据Excel的行逐一对上面构造的DataTable的列进行赋值
int i = 0;
// int temp=0;
int coun = this.dataGridView.RowCount;

 //  20150105  ,打开数据库
       string filepath = AppDomain.CurrentDomain.BaseDirectory + "Database1.mdb";
       string dbfile = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="+filepath ;         
       OleDbConnection oleDbConn = new OleDbConnection();
       oleDbConn.ConnectionString = @dbfile;
       oleDbConn.Open();    

 //建立adapter
       OleDbDataAdapter myadapter = null;
       string strdata = "select  * from   excelData";
       myadapter = new OleDbDataAdapter(strdata, oleDbConn);
       OleDbCommandBuilder mybuilder = new OleDbCommandBuilder(myadapter); // 20150105 不加报错  

       DataSet ds = null;
       ds = new DataSet();

       myadapter.Fill(ds, "table1");    // table1 就是新建的表格名字
       //根据DataGridView的列构造一个新的DataTable
    //   DataTable dtone = new DataTable();
       DataTable  dtone = ds.Tables["table1"];
       this.dataGridView.DataSource  = dtone;

       DataColumn[] myPrimaryKey = new DataColumn[1];
       myPrimaryKey[0] = dtone.Columns["ID"];
       dtone.PrimaryKey = myPrimaryKey;

       DataRow myRemoveRow = dtone.Rows.Find("20"); //步骤3

       myRemoveRow.Delete();![![图片说明](https://img-ask.csdn.net/upload/201501/06/1420542791_901431.jpg)图片说明](https://img-ask.csdn.net/upload/201501/06/1420542779_623497.jpg)

一般是参数类型没用对,字符串和数字类型混淆了。

http://zhidao.baidu.com/link?url=4d64eRvO9zgYzQC7sbxer9SFmo_UMxuSsJvdhVqQufiGi4rYdZaePg633EXRluFg4vvhHsfTVCQprZ7tl-HtMq

查看sql语句是否对。各个字段类型

怎么查看 SQl 语句, 我没有使用其它的 Sql 语句啊?