asp.net BOF or EOF has one is true, or the current record has been removed _ practical tips

Source: Internet
Author: User
What we need to do is to use the Recordsetcount attribute to determine whether the data in the database is empty before using the MoveNext method of the Recordset object:
Copy Code code as follows:

Dim objRS As New Recordset
Dim objcn As New Connection
Dim strSQL As String
Objcn.connectionstring= "FILEDSN=STUDENT.DSN; User_id=sa; Password=123 "
Objcn.open
Strsql= "SELECT * from Student_info"
Objrs.open strSQL, Objcn,adopenkeyset, adLockOptimistic
' In this judgment, if empty then tell the user and exit the module operation on the line
If Objrs.recordsetcount=0 Then
MsgBox "Status information does not exist, please add after the operation!" "
Objrs.close
Set objrs=nothing
Exit Sub ' This step can not be forgotten, or you have to make an error, the reason is still carried out the next operation
End if () {
}

This solves the problem and then continues, and if we write the linked database in advance and return the record to the recordset's function, the steps can be omitted!

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.