For x=0 To 2
Dim FO As String
Dim DataQuery1 As String
DataQuery1 = "Select * from dole_employees WHERE fullname like '%" & Temp_Employees_Name & "%'"
mysqlcommand = New MySqlCommand(DataQuery1, mconnection)
readme = mysqlcommand.ExecuteReader()
While readme.Read()
FO = readme(1)
End While
readme.Close()
MsgBox(FO)
Next
在FO
中显示一次值后,会发生未处理的异常错误。我该怎么办?
以下是未处理豁免错误的其他信息。 附加信息:已经有一个与此Connection关联的打开DataReader,必须先关闭它。 但是已经有一个readme.close()所以为什么会这样呢?