2
MySQLReader
がレコードを検索し終わったかどうかを確認したい。MySQLReaderが実行されているかどうかを確認するVB.Netを実行中/検索中
これまでのところ、このコードはレコードの検索に役立ちます。
if reader.HasRows then
while reader.Read()
//codes
end while
else
//else condition codes
end if
実際にReader
が実行を終了したかどうかを知りたいです。 reader.Finished()//**but there's no such thing like this code**
のようなものです。誰かがこれを助けることができますか?