C# and local database (access)
This question already has an answer here:
Change the second query to:
string query = "select * from [Tab1] where FirstName='" + listBox2.Text + "'";
And while (reader.Read())
to:
if (reader.Read())
链接地址: http://www.djcxy.com/p/71174.html
上一篇: 使用Qt 4和Qt 5开发Windows和OS X的应用程序?
下一篇: C#和本地数据库(访问)