首頁  >  文章  >  資料庫  >  命名空间"Microsoft.SqlServer"中不存在类型

命名空间"Microsoft.SqlServer"中不存在类型

WBOY
WBOY原創
2016-06-07 15:40:141062瀏覽

using System; using Microsoft.SqlServer.Management.Smo; using Microsoft.SqlServer.Management.Common; namespace DAL { public class SMODemo { public static void Main() { ServerConnection conn = new ServerConnection(); conn.LoginSecure = fals

using System;
using Microsoft.SqlServer.Management.Smo;
using Microsoft.SqlServer.Management.Common;


namespace DAL
{
    public class SMODemo
    {
        public static void Main()
        {
            ServerConnection conn = new ServerConnection();
            conn.LoginSecure = false;
            conn.Login = "userName";
            conn.Password = "password";
            Server svr = new Server(conn);
            Console.WriteLine(svr.Name + " " + svr.Information.VersionString);
        }
    }
}
编译时有下面的错误:怎么解决呢?

SMODemo.cs(4,27): error CS0234:
        命名空间“Microsoft.SqlServer”中不存在类型或命名空间名称“Management”(
        是缺少程序集引用吗?)
SMODemo.cs(5,27): error CS0234:
        命名空间“Microsoft.SqlServer”中不存在类型或命名空间名称“Management”(
        是缺少程序集引用吗?)

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn