OleDBConnection参数如何使用

时间:2015-04-10 21:24:30

标签: c#

我很难获得使用OleDBConnection的参数。它应该根据查询字符串选择正确的表。

using (OleDbCommand command = new OleDbCommand())
{
    command.Connection = connection;            
    command.Parameters.Add(new OleDbParameter("@table", table));
    command.CommandText = "SELECT [title] from @table ORDER BY [title] ASC";              
    adapter.SelectCommand = command;
    adapter.Fill(dt);
}

0 个答案:

没有答案