应该不会有这种情况阿,你是怎么读取数据的?

解决方案 »

  1.   


     string strConn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + System.Windows.Forms.Application.StartupPath + "\\temp.mdb";
                OleDbConnection conn = new OleDbConnection(strConn);
                string strsel = "";
                DataSet ds = new DataSet();
                strsel = "select * from temp";
                OleDbDataAdapter da = new OleDbDataAdapter(strsel, strConn);
                da.Fill(ds);
                for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
                {
                    string s1 = ds.Tables[0].Rows[i][0].ToString() + " " + ds.Tables[0].Rows[i][1].ToString();               
                }