【SQL Server中SMO的簡單使用】 (裝載)

來源:互聯網
上載者:User
分類: 雜七雜八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?
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;  
  4. using System.Text;  
  5. using Microsoft.SqlServer.Management.Common;  
  6. using Microsoft.SqlServer.Management.Smo;  
  7. using Microsoft.SqlServer.Management;  
  8.   
  9.   
  10. namespace ConsoleApplication1  
  11. {  
  12.     class Program  
  13.     {  
  14.   
  15.         static void Main(string[] args)  
  16.         {  
  17.             //建立資料庫執行個體串連   
  18.             Server s = new Server("POOFLY-PC");  
  19.             ServerConnection sc = s.ConnectionContext;  
  20.             sc.LoginSecure = false;  
  21.             sc.Login = "sa";  
  22.             sc.Password = "123456";  
  23.             sc.Connect();  
  24.             //輸出資料庫數目和第一個資料庫名   
  25.             Console.WriteLine("DatabaseCount:" + s.Databases.Count);  
  26.             Console.WriteLine(s.Databases[0].Name);  
  27.             //建立資料庫   
  28.             Database db = new Database(s, "newdb");  
  29.             db.Create();  
  30.             //建表Tb   
  31.             Table tb = new Table(db, "NewTableName");  
  32.             Column c = new Column(tb, "CustomerID");  
  33.             c.Identity = true;  
  34.             c.IdentitySeed = 1;  
  35.             c.DataType = DataType.Int;  
  36.             c.Nullable = false;  
  37.             tb.Columns.Add(c);  
  38.             c = new Column(tb, "CustomerName");  
  39.             c.DataType = DataType.VarChar(20);  
  40.             c.Nullable = true;  
  41.             tb.Columns.Add(c);  
  42.             tb.Create();  
  43.             //建立預存程序   
  44.             StoredProcedure sp = new StoredProcedure(db, "sptest");  
  45.             StoredProcedureParameter pa1 = new StoredProcedureParameter(sp, "@pa1", DataType.Int);  
  46.             sp.TextMode = false;  
  47.             sp.Parameters.Add(pa1);  
  48.             sp.TextBody = "select * from NewTableName where CustomerID=@pa1";  
  49.             sp.Create();  
  50.             //執行預存程序   
  51.             db.ExecuteNonQuery("sptest 1");  
  52.               
  53.         }  
  54.   
  55.   
  56.     }  
  57. }  
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.