ASP object: Database Operation class

Source: Internet
Author: User
Objects | data | database <%
' ────────────────────────────────
' Function Description: DB Class is the class that implements the database connection, which leaves the database connection string interface
' Includes modules: None, generally included by other modules
' Call method: 1, if you are using an existing database connection, you do not have to change the database connection string connstr
' The specific operation is: Set dbc=new databaseclass
' DBC. Connstr= "Other Connection Strings"
' 2, Method uses: Set CONN=DBC. OpenConnection () Gets a Connection object
' ────────────────────────────────
Class Dbclass
' ────────────────────────────────
' Define variables
Private Iconnstr
' ────────────────────────────────
' ConnStr Property
Public Property Let ConnStr (Val)
Iconnstr = Val
End Property
' ────────────────────────────────
' ConnStr Property
Public Property Get ConnStr ()
ConnStr = Iconnstr
End Property
' ────────────────────────────────
' Class initialization
Private Sub Class_Initialize ()
End Sub
' ────────────────────────────────
' Class logoff
Private Sub Class_Terminate ()
ConnStr = Null
End Sub
' ────────────────────────────────
' Establish a connection
Public Function OpenConnection ()
Dim Tempconn
' On Error Resume Next
Set tempconn = Server.CreateObject ("ADODB. Connection ")
Tempconn.open ConnStr
Set OpenConnection = Tempconn
Set Tempconn = Nothing
If Err.Number <> 0 Then
Response.Write (' <script>alert (' [System error]\n\n database connection Error! Please check system parameter settings >> site constant settings, or/inc/const.asp file! '); </script> ")
Response.End
End If
End Function
End Class

%>



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.