0
我試圖使用DataReader()檢索並將14個數據庫記錄存儲到變量中。我知道如何將多個字段存儲到變量中,但我不知道如何存儲一列中的14條記錄。我正在使用MS Access和VB。使用DataReader將數據庫多個記錄存儲到變量
Try
con.Open()
dr = cmd.ExecuteReader()
While dr.Read
variableName = dr.Item("Description")
Now, how can I do it for the other 13 variables?????
End While
con.Close()
Catch ex As Exception
con.Close()
MsgBox(ex.Message) : Exit Sub
End Try
感謝奧斯汀,但我認爲「行()」不是數據讀取器的一部分。 – JCLD