ADO 2-Successfully connected to database---Shinepans

Source: Internet
Author: User

Configuration database:

Connection string: server= Pinchamp \\sqlexpress;database=db_test; Trusted_connection=true


Connection code:
Using system;using system.collections.generic;using system.data.sqlclient;using system.linq;using System.Text;using System.threading.tasks;namespace sqltest{    class program    {        static void Main (string[] args)        {            // Connection database            String connection =                "server= Pinchamp \\sqlexpress;database=db_test; Trusted_connection=true ";            SqlConnection sc = new SqlConnection ();            Sc. ConnectionString = connection;            Try            {                sc. Open ();                Console.WriteLine ("Already Open database connection!");            }            catch (Exception ex)            {                Console.WriteLine ("Open database error: {0}", ex. Message);            }            Finally            {                sc. Close ();                Console.WriteLine ("Database connection closed!");            System.Console.ReadLine ();}}}    

Connection Result:



Copyright notice: This article blog original article. Blogs, without consent, may not be reproduced.

ADO 2-Successfully connected to database---Shinepans

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.