我有這部分代碼:什麼是在這些SqlDataAdapter.Fill此參數和DataSet.Tables
Dim SqlCommand_customer As New SqlCommand("selectcustomer", conn.con)
SqlCommand_customer.CommandType = CommandType.StoredProcedure
Dim da_customer As New SqlDataAdapter
Dim SqlDataAdapter_customer As New SqlDataAdapter(SqlCommand_customer)
Dim ds_customer = New DataSet()
SqlDataAdapter_customer.Fill(ds_customer, "customer")
DataGridView_customer.DataSource = ds_customer.Tables("customer")
所以,我想知道在最後兩行不"customer"
代表
沒有什麼在整個文件名爲customer
和MSDN狀態,在Fill
第二個參數必須是iDataReader
類型:
dataReader
類型:System.Data.IDataReader
IDataReader的一個實例。