ASP Connection Access database method

Source: Internet
Author: User

ASP Database connection method A lot of, especially ASP and Access database There are several ways to connect to an Access database today is the best way to do that.

Rs,conn is defined as a global variable so that it can be used directly when other files adjust the current file.

Dim Rs,conn

Sub Db_connect ()
Dpath = "Dbasemateydbweb_^%$#@.mdb"
Set conn=server.createobject ("Adodb.connection")
Set Rs =server.createobject ("Adodb.recordset")
conn.connectionstring= "Provider=Microsoft.Jet.OLEDB.4.0;Data source=" &server.mappath (Dpath)
Conn.Open
End Sub

The

Here determines whether RS and Conn are created, and if the object is present, it can save system resources.
 
 sub closedb ()
  if IsObject (RS) then
   if not (Rs.) then
    rs.close
    set rs=nothing
    end if
   end if
  if isobject (Conn) then
   if not (Conn are nothing) then< br>     conn.close
    set conn=nothing
   end if
  end if
 end sub

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.