2

Tried following c# code to get all tablenames in the database, but I get an error-message saying:

"System.Data.OleDb.OleDbException (0x80040E14): Invalid SQL statement; expected 'DELETE', 'INSERT', 'PROCEDURE', 'SELECT', or 'UPDATE'..."

OleDbConnection conn = new OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + tbx_Source.Text + ";");
OleDbCommand cmd = new OleDbCommand("SHOW TABLES;", conn);
OleDbDataReader reader;

try
{
    conn.Open();
    reader = cmd.ExecuteReader();
    if (reader.HasRows)
    {
        while (reader.Read())
        {
            cbx_Tables.Items.Add(reader.GetValue(0).ToString());
        }
    }
}
catch (Exception ex)
{
    MessageBox.Show(ex.ToString());
}

How do I execute this kind of commands with OleDb?

Thanks :)

4

3 に答える 3

1

データベース(つまりmdb)のすべてのテーブルを表示したいので、試すことができます

           DbProviderFactory factory = DbProviderFactories.GetFactory("System.Data.OleDb");

           DataTable userTables = null;
           using (DbConnection connection = factory.CreateConnection())
           {

               connection.ConnectionString = "Provider=Microsoft.Ace.OLEDB.12.0;Data  
               Source=C:\test\testfile.accdb;Jet OLEDB:Database Password=yourrPassword;";

                string[] restrictions = new string[4];
                restrictions[3] = "Table";

                connection.Open();

                // Get list of user tables
                userTables = connection.GetSchema("Tables", restrictions);


                foreach (DataRow item in userTables.Rows) // You can use simple 
                                                          //looping to retreive the table Name
                {



                }
            }

私のために働いた

于 2013-10-29T12:39:56.787 に答える
1

カイルの答えは a を使用して私が好むものですが、コマンドテキストを作成することにより、質問コードにあるようにDataTablean を使用できますOleDBDataReaderOleDbCommand

Select TABLE_NAME From INFORMATION_SCHEMA.TABLES
于 2013-10-29T13:21:04.870 に答える