Asp+sql Personal Summary of various operations on the database

Source: Internet
Author: User
asp+| Data | Database relaxing Life Network (relaxlife.net) Asp+sql Personal Summary of various operations on the database

/**********************************************************************
*
* 1,---------Asp+sql Personal Summary of various operations on the database
*
* If you need more code, please go to: http://www.relaxlife.net feel good help me top!
*
*
*********************************************************************/

<%

Query method
----------------------------(1)-------------------------------
Set rsworkuserinfo = Server.CreateObject ("ADODB. RecordSet ")

strSQL = "Select UserSID, LoginName, UserName, Password"
strSQL = strSQL & "from Users"
strSQL = strSQL & "Where usersid=" & Sqlstr (Tuserid)

If rsworkuserinfo.state = 1 Then
Rsworkuserinfo.close
End If
Rsworkuserinfo.open strsql,conn,1,1

If not rsworkuserinfo.eof Then
LoginName = Rsworkuserinfo ("LoginName")
UserName = Rsworkuserinfo ("UserName")
Password = Rsworkuserinfo ("Password")
End If

Rsworkuserinfo.close
Set Rsworkuserinfo = Nothing

----------------------------(2)-------------------------------
strSQL = "Select UserSID, LoginName, UserName, Password"
strSQL = strSQL & "from Users"
strSQL = strSQL & "Where usersid=" & Sqlstr (Tuserid)
Set rsfind = Conn.execute (strSQL)

If not rsfind.eof Then
LoginName = Rsfind ("LoginName")
UserName = Rsfind ("UserName")
Password = Rsfind ("Password")
End If

Rsfind.close
Set Rsfind = Nothing

Modify method
----------------------------(1)-------------------------------
Set rsworkuserinfo = Server.CreateObject ("ADODB. RecordSet ")

&nbs



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.