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

WBOY
發布: 2016-06-07 15:40:14
原創
1060 人瀏覽過

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”(
        是缺少程序集引用吗?)

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板