0

ヘルプ。次の行で失敗します: adapter.Fill(ds); // エラー 名前が無効であることを確認してください。無効な文字や句読点が含まれておらず、長すぎません。

        openFileDialog1.Title = "Выбрать файл";
        openFileDialog1.InitialDirectory ="C:\\";        
        openFileDialog1.Filter = "dbf файлы (*.dbf)|*.dbf";            
        openFileDialog1.FilterIndex = 2;           
        openFileD`ial`og1.RestoreDirectory = true;
        openFileDialog1.FileName = "";


         if (openFileDialog1.ShowDialog() == DialogResult.OK)
        {
string fullPathname = openFileDialog1.FileName;
                    FileInfo fi = new FileInfo(fullPathname);
                    string open_b = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + fi.Directory + ";Extended Properties=dBase 5.0;Mode=Read|Write|Share Deny None;Persist Security Info=True";
                    OleDbConnection con = new OleDbConnection();
                    con.ConnectionString = open_b;
                    con.Open();



                 string vibor_t = "Select * From '" + fi.Name + "'";
                //string vibor_t = "Select * From '" + Path.GetFileNameWithoutExtension(fi.Name) + "'";

                OleDbDataAdapter adapter = new OleDbDataAdapter(vibor_t, con);
                DataSet ds = new DataSet();
                adapter.Fill(ds);  // ERROR
                con.Close();
                this.dataGridView1.DataSource = ds.Tables[0];
4

1 に答える 1

0

次のように、fi.Name から拡張子を削除し、単一の qotes を削除する必要があります。

string vibor_t = "Select * From " + Path.GetFilenameWithoutExtension(fi.Name);
于 2012-07-09T12:01:50.057 に答える