C # link SQL and Access database statements

Source: Internet
Author: User

1. SQL database:

1.1, LINK data statement: server=localhost;database=data; uid=sa;pwd=123; Or

Data Source=localhost;database=data; Uid=sa; pwd=123;

1.2. Code Link Database:

SqlConnectionStringBuilder Csbuilder = new SqlConnectionStringBuilder ();

Csbuilder. DataSource = "localhost";//sql link Instance

Csbuilder. InitialCatalog = "data";//Database name

Csbuilder. UserID = "sa";//user ID of linked data

Csbuilder. Password = "123";//user password

2. Number of Access Links:

1.1. LINK Data statement:

Provider=Microsoft.Jet.OLEDB.4.0;Data source=| Datadirectory|\news.mdb

1.2. Code Link Database:

Oledbconnectionstringbuilder olestring = new Oledbconnectionstringbuilder ();

Olestring.provider = "Microsoft.Jet.OLEDB.4.0";

Olestring.datasource = "News.mdb";

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.