我正在尝试从 .tps 文件中选择一些字段,但出现以下错误:
这是我的代码:
privatevoidbutton1_Click(objectsender,EventArgse)
{
stringcon=ConfigurationManager.AppSettings["WinDSS_Connection"];
try
{
OdbcConnectionconn=newOdbcConnection(con);
OdbcCommandcmd=newOdbcCommand();
OdbcDataAdapterda=newOdbcDataAdapter();
DataTabledt=newDataTable();
conn.Open();
cmd=conn.CreateCommand();
cmd.CommandType=CommandType.Text;
cmd.CommandText="SELECT Store_No,Store_Name,Store_City,Store_State FROM SYSMST";
da.SelectCommand=cmd;
da.Fill(dt);
dgv1.DataSource=dt;
conn.Close();
}
catch(Exceptionex)
{
MessageBox.Show(ex.Message.ToString());
}
}
我的 app.config
<appSettings>
<addkey="WinDSS_Connection"value="DRIVER=SoftVelocityTopspeeddriver(*.tps);DBQ=T:\Rambo\Store231WinDss\windss\DATA;Extension=tps;Oem=N;NullEmptyStr=N;"/>
</appSettings>
我如何在 ODBC 数据源管理员上配置我的驱动程序
当我使用 Top Scan 并查看同一张表时,其中有一条记录,那么为什么它没有在 datagridview 上显示该结果以及这个 ISAM 表是什么,请帮助我,因为我在这里没有选项。