向 dataAdapter.fill() 添加参数
Posted
技术标签:
【中文标题】向 dataAdapter.fill() 添加参数【英文标题】:Add parameter to dataAdapter.fill() 【发布时间】:2011-07-20 17:05:32 【问题描述】:我正在尝试将参数添加到 sqlDataAdapter。我尝试使用 parameters.add() 但适配器不是 sqlCommand。这是我的一些代码。
Private Sub convertToCSV(ByVal SqlQuery As String)
Dim Dt As New DataTable()
Dim SqlCon As New SqlConnection("Data Source=db;Initial Catalog=productionservicereminder;User Id=id;Password=pass;")
Dim Ada As New SqlDataAdapter(SqlQuery, SqlCon)
Ada.Fill(Dt)
Public Sub excSP(ByVal ReprtID As Integer, ByVal pgid As Integer)
convertToCSV(sql4)
End Sub
基本上我正在尝试做这样的事情:
Ada.Parameters.Add(New SqlParameter("@pgid", pgid))
【问题讨论】:
【参考方案1】:使用 SelectCommand:
ADA.SelectCommand.Parameters.Add(New SqlParameter("@pgid", pgid))
http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqldataadapter.selectcommand.aspx
【讨论】:
以上是关于向 dataAdapter.fill() 添加参数的主要内容,如果未能解决你的问题,请参考以下文章
在调用 DataAdapter Fill() 方法后,判断新行是不是添加到 DataTable 的正确方法是啥?
使用 C# dataAdapter.Fill() 和 dataAdapter.Update() 将表的数据从一个数据库传输到另一个数据库的同一个表