Cannot attach the file 'C:\Users\raye\Documents\(LocalDB)\MSSQLLocalDB.mdf' as database 'D:\DIY\DMS-

第一次C#鏈接數據庫數據庫

但願在控制檯界面上看到一個 success 就說明鏈接上了ui

這是個人代碼spa

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Data.SqlClient;

namespace DMSconfig
{
    class Program
    {
        static void Main(string[] args)
        {
            SqlConnection conn = new SqlConnection(DMSconfig.Properties.Settings.Default.DMSstring);
            try
            {
                conn.Open();
                System.Threading.Thread.Sleep(3000);
                Console.WriteLine("success");
            }
            catch(Exception ex)
            {
                Console.Write(ex.Message);
            }
            finally
            {
                if(conn.State==System.Data.ConnectionState.Open)
                {
                    conn.Close();
                }
                Console.WriteLine("quit");
            }
            Console.Read();
        }
    }
}

可是很不幸:code

這是爲何呢?blog

我在stackoverflow上找到了和我有同樣疑問的人的問題,並找到了正確答案。string

因而我也找到了對應字段並刪除。it

而後再運行一次:io

相關文章
相關標籤/搜索