C# mAdapter.Fill(rs)提示SQL logic error near "-": syntax error 解决
因为数据库内容包含“-”,所以提示错误,解决方案如下:
原来的查询语句:string strSql = "select * from S-8261D系列";
更改后的查询语句:string strSql = "select * from `S-8261D`系列";
1 string strSql = "select * from `S-8261D`系列";
因为数据库内容包含“-”,所以提示错误,解决方案如下:
原来的查询语句:string strSql = "select * from S-8261D系列";
更改后的查询语句:string strSql = "select * from `S-8261D`系列";
1 string strSql = "select * from `S-8261D`系列";