Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 vb.net 中使用参数化查询?因为我一直想制作一个可以读取 ms access 数据库并根据您的查询显示结果的程序。
使用问号代替参数创建所需的查询
Dim sql = "SELECT * FROM Students WHERE Name = ?"
然后创建一个 OleDbCommand 对象并设置适当的值(CommandText 等)。然后将参数添加到命令对象。最后,根据需要执行它。例如作为 ExecuteReader。