5 ways to connect databases in ASP

Source: Internet
Author: User
Tags odbc
5 ways to connect databases in ASP
(01-3-30 199)
From:chinaasp.com by Caoli
First-this method is used in access with the most
strconn = "Driver=microsoft Access DRIVER (*.mdb);D bq=" & Server.MapPath ("Aspfree.mdb")
Set conn = Server.CreateObject ("Adodb.connection")
Conn.Open strconn
The second type-this method is used in SQL Server for more
strconn = "Driver={sql
Server};D Escription=sqldemo; server=127.0.0.1; Uid=loginid; Pwd=password;database=database_name
Set conn = Server.CreateObject ("Adodb.connection")
Conn.Open strconn
Third Kind
Strconn= "Driver={microsoftaccessdriver (*.mdb)};" &_
"Dbq=f:inetpubwwwrootsomedirdb1.mdb;defaultdir=f:inetpubwwwrootsomedir;uid=loginid;" &_
"Pwd=password;driverid=25;fil=msaccess" Set conn = Server.CreateObject ("Adodb.connection")
Conn.Open strconn
Fourth application of system data sources
The following uses a Data Source Name:
Set conn = Server.CreateObject ("Adodb.connection")
Conn.Open "Example"
The fifth way to use ODBC data sources is if you have to set up the data source in the Control Panel ODBC
Set rs = Server.CreateObject ("Adodb.recordset")
Rs.Open "Tblname", "DSNname", 3, 3

Related Article

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.