分類: 雜七雜八SQL Server知識點 2010-05-15 20:59 554人閱讀 評論(2) 收藏 舉報
SMO是SQL Mangagement Objects的簡稱.與之相對應的是ADO.Net。
不過不同的地方是ADO.Net是用於資料訪問的,而SMO是用於設計的,雖然SMO能夠再伺服器上執行任意的SQL語句.
另外一個不同的地方是ADO.Net可以訪問電腦中任意資料來源,而SMO對象是專門針對SQL Server而設計的.
在SMO中最重要的一個類就是Server.其他大多數對象都是Server對象的後代.比如Database,Table,View等等對象都是通過Server屬性不斷向下檢索到的.
要在VS2005/vs2008中使用必須引用SMO的程式集.我們建立好一個控制台應用程式,添加引用:Microsoft.SqlServer.ConnectionInfo和Microsoft.SqlServer.Smo.
更多內容 請參看 http://social.msdn.microsoft.com/Search/zh-cn?query=smo
這裡有個插曲:我在第一次做的時候出現錯誤:http://topic.csdn.net/u/20100515/19/c1298085-5d2e-41b4-8b91-7003b039aac0.html 解決方案見內
下面是SMO的基本操作
view plaincopy to clipboardprint?
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using Microsoft.SqlServer.Management.Common;
- using Microsoft.SqlServer.Management.Smo;
- using Microsoft.SqlServer.Management;
-
-
- namespace ConsoleApplication1
- {
- class Program
- {
-
- static void Main(string[] args)
- {
- //建立資料庫執行個體串連
- Server s = new Server("POOFLY-PC");
- ServerConnection sc = s.ConnectionContext;
- sc.LoginSecure = false;
- sc.Login = "sa";
- sc.Password = "123456";
- sc.Connect();
- //輸出資料庫數目和第一個資料庫名
- Console.WriteLine("DatabaseCount:" + s.Databases.Count);
- Console.WriteLine(s.Databases[0].Name);
- //建立資料庫
- Database db = new Database(s, "newdb");
- db.Create();
- //建表Tb
- Table tb = new Table(db, "NewTableName");
- Column c = new Column(tb, "CustomerID");
- c.Identity = true;
- c.IdentitySeed = 1;
- c.DataType = DataType.Int;
- c.Nullable = false;
- tb.Columns.Add(c);
- c = new Column(tb, "CustomerName");
- c.DataType = DataType.VarChar(20);
- c.Nullable = true;
- tb.Columns.Add(c);
- tb.Create();
- //建立預存程序
- StoredProcedure sp = new StoredProcedure(db, "sptest");
- StoredProcedureParameter pa1 = new StoredProcedureParameter(sp, "@pa1", DataType.Int);
- sp.TextMode = false;
- sp.Parameters.Add(pa1);
- sp.TextBody = "select * from NewTableName where CustomerID=@pa1";
- sp.Create();
- //執行預存程序
- db.ExecuteNonQuery("sptest 1");
-
- }
-
-
- }
- }