我想要一个允许用户创建自己的查询以从数据库中检索数据的程序。完成这项任务的最佳方法是什么?任何链接或示例代码将不胜感激。谢谢。
最佳答案
我会去:
创建一个表单,将其命名为formSample
添加一个文本框,将其命名为txbSample
添加一个datagridview,将其命名为dgvSample
添加一个按钮,将其命名为btnSample
客户端将使用txbSample输入查询
btnSample是您放置代码的位置。
dgvSample是数据,不是真正推荐的数据,它仅用于显示您检索到的数据。
假设您已连接到数据库,则btnSample上的代码应类似于
注意:不是完整的代码
Dim sql As String
sql = txbSample.text
Using cmd As New MySqlCommand
Try
'open the connection here
cmd.Connection = con
cmd.CommandText = sql
Dim dt As New DataTable
da = New MySqlDataAdapter(cmd)
da.Fill(dt)
'close the connection here
dgvSample.DataSource = dt
Catch ex As Exception
MessageBox.Show("Error while fetching data.")
'close the connection here
End Try
End Using
dt is a datatable where the data are stored. You should do something to be able to use it:)