|
使用SQL Server 2005 的CLR存储过程
SQL Server 2005的一大新特性便是整合了.net 的CLR。整合了.net CLR的好处在于,可以很方便地使开发者可以使用自己熟悉的.net 语言来创建存储过程,触发器,自定义函数等。在本文中,将以C#来创建存储过程。为什么不用T-SQL来创建存储过程呢?因为T-SQL发展到目前,已经很长时间了,在某些场合有其局限性,比如T-SQL不是面向对象的,某些语法过于复杂等。而如果使用面向对象的.NET 语言来编写如存储过程等数据对象时,由于.net 语言强大的特性,因此能写出更健壮和更优秀的存储过程。注意,通过SQL Server 2005用.NET编写的存储过程,都是和用.NET语言编写一般应用的程序一样,都是managed code。此外,CLR 编程语言提供了 T-SQL 中所没有的丰富构造(例如数组和列表等)。与 T-SQL(它是一种解释语言)相比,CLR 编程语言之所以具有更好的性能,是因为托管代码是已编译的。对于涉及算术计算、字符串处理、条件逻辑等的操作,托管代码的性能可能要优于 T-SQL 一个数量级。在本文中,虽然可以用T-SQL来编写存储过程,但为了说明问题,还是以C#来写存储过程。步骤如下:
首先,打开Visual Studio 2005 beta 2,选择c#语言,新建立一个database工程,命名为sqlproject1。此时,Visual Studio 2005 beta 2会询问你,要与什么数据库进行关联。由于我们采用的是pubs这个数据库,因此我们选择机器名是本地机器,设置好sql的验证方式,选择pubs数据库,就可以了。(注意,在SQL Server 2005中,pubs和northwind数据库不再是SQL Server 2005的自带数据库了,需要到http://go.microsoft.com/fwlink/?LinkId=31995去下载)。接着,在工程建立完毕后,选择新增项目,选择store procedure存储过程,并以Authors.cs命名,再按确定,并输入以下代码:
using System; using System.Data; using System.Data.Sql; using System.Data.SqlTypes; using Microsoft.SqlServer.Server; using System.Data.SqlClient; public partial class StoredProcedures { [Microsoft.SqlServer.Server.SqlProcedure] public static void GetAuthors() { SqlPipe sp = SqlContext.Pipe; using (SqlConnection conn = new SqlConnection("context connection=true")) { conn.Open(); SqlCommand cmd = new SqlCommand(); cmd.CommandType = CommandType.Text; cmd.Connection = conn; cmd.CommandText = "Select DatePart(second, GetDate()) " + " As timestamp,* from authors"; SqlDataReader rdr = cmd.ExecuteReader(); sp.Send(rdr); } } [SqlProcedure] public static void GetTitlesByAuthor(string authorID) { string sql = "select T.title, T.price, T.type, " + "T.pubdate from authors A" + " inner join titleauthor TA on A.au_id = TA.au_id " + " inner join titles T on TA.title_id = T.title_id " + " where A.au_id = ’" + @authorID + "’"; using (SqlConnection conn = new SqlConnection("context connection=true")) { conn.Open(); SqlPipe sp = SqlContext.Pipe; SqlCommand cmd = new SqlCommand(); cmd.CommandType = CommandType.Text; cmd.Connection = conn; cmd.CommandText = sql; SqlParameter paramauthorID = new SqlParameter("@authorID", SqlDbType.VarChar, 11); paramauthorID.Direction = ParameterDirection.Input; paramauthorID.Value = authorID; cmd.Parameters.Add(paramauthorID); SqlDataReader rdr = cmd.ExecuteReader(); sp.Send(rdr); } } } |
SqlPipe sp = SqlContext.Pipe; |
using (SqlConnection conn = new SqlConnection("context connection=true")) conn.Open(); |
SqlCommand cmd = new SqlCommand(); cmd.CommandType = CommandType.Text; cmd.Connection = conn; cmd.CommandText = "Select DatePart(second, GetDate()) " + " As timestamp,* from authors"; |
SqlDataReader rdr = cmd.ExecuteReader(); |
sp.Send(rdr); |
EXEC sp_configure ’clr enabled’, 1; RECONFIGURE WITH OVERRIDE; GO |
利用TableAdapter Configuration Wizard创建数据访问层
在Visual Studio 2005 中,新增了TableAdapter configuration wizard来很方便地创建数据访问层。首先,我们了解下什么是tableadapter。一个tableadapter连接到数据库,执行查询语句或者存储过程,并且将返回的结果集填充到datatable中去。Tableadapter configuration 向导允许你以类型化dataset方式创建编辑数据集合,十分方便。
首先用C#语言,创建一个名为NtierExample的WEB项目,如下图:
|
|
|
|
|
|
public class AuthorsBiz { public AuthorsBiz() {} public DataTable GetAuthors() { AuthorsTableAdapters.AuthorsTableAdapter authorDB = new AuthorsTableAdapters.AuthorsTableAdapter(); return authorDB.GetAuthors(); } public DataTable GetAuthorTitles(string authorID) { AuthorsTableAdapters.AuthorTitlesTableAdapter authorDB = new AuthorsTableAdapters.AuthorTitlesTableAdapter(); return authorDB.GetTitlesByAuthor(authorID); } } |
创建表示层
在ASP.NET 2.0中,在创建表示层时,可以使用master-page技术,使得可以很方便地构建页面。Mater-page的意思是,可以首先构建出一个页面的主框架模版结构,然后在其中放置一个ContentPlaceHolder控件,在该控件中,将展现其他子页面的内容。在其他子页面中,只需要首先引用该master页面,然后再修改ContentPlaceHolder控件的内容就可以了。
首先,在工程中新增加一个"master"类型的文件,将其命名为CommonMaster,然后输入以下代码:
<%@ master language="C#" %> <html> <head id="Head1" runat="server"> <title>Master Page</title> </head> <body> <form id="Form1" runat="server"> <table id="header" style="WIDTH: 100%; HEIGHT: 80px" cellspacing="1" cellpadding="1" border="1"> <tr> <td style="TEXT-ALIGN: center; width: 100%; height: 74px;" bgcolor="teal"> <asp:label runat="server" id="Header" Font-Size="12pt" Font-Bold="True"> Authors Information </asp:label> </td> </tr> </table> <b/> <table id="leftNav" style="WIDTH: 108px; HEIGHT: 100%" cellspacing="1" cellpadding="1" border="1"> <tr> <td style="WIDTH: 100px"> <table> <tr> <td> <a href="Home.aspx">Home</a> </td> </tr> <tr> <td> <a href="Authors.aspx">Authors List</a> </td> </tr> </table> </td> </tr> </table> <table id="mainBody" style="LEFT: 120px; VERTICAL-ALIGN: top; WIDTH: 848px; POSITION: absolute; TOP: 94px; HEIGHT: 100%" border="1"> <tr> <td width="100%" style="VERTICAL-ALIGN: top"> <asp:contentplaceholder id="middleContent" runat="Server"></asp:contentplaceholder> </td> </tr> </table> </form> </body> </html> |
|
|
<%@ Page Language="C#" MasterPageFile="~/CommonMaster.master" %> <asp:content id="Content1" contentplaceholderid="middleContent" runat="server"> <asp:objectdatasource runat="server" id="authorsSource" typename="AuthorsBiz" selectmethod="GetAuthors"> </asp:objectdatasource> <asp:gridview runat="server" AutoGenerateColumns="false" id="authorsView" datasourceid="authorsSource"> <alternatingrowstyle backcolor="Silver"></alternatingrowstyle> <Columns> <asp:HyperLinkField DataTextField="au_id" HeaderText="Author ID" DataNavigateUrlFields="au_id" DataNavigateUrlFormatString="AuthorTitles.aspx?AuthorID={0}"> </asp:HyperLinkField> <asp:BoundField HeaderText="Last Name" DataField="au_lname"></asp:BoundField> <asp:BoundField HeaderText="First Name" DataField="au_fname"></asp:BoundField> <asp:BoundField HeaderText="Phone" DataField="phone"></asp:BoundField> <asp:BoundField HeaderText="Address" DataField="address"></asp:BoundField> <asp:BoundField HeaderText="City" DataField="city"></asp:BoundField> <asp:BoundField HeaderText="State" DataField="state"></asp:BoundField> <asp:BoundField HeaderText="Zip" DataField="zip"></asp:BoundField> </Columns> </asp:gridview> </asp:content> |
<asp:objectdatasource runat="server" id="authorsSource" typename="AuthorsBiz" selectmethod="GetAuthors"> </asp:objectdatasource> |
<%@ Page Language="C#" MasterPageFile="~/CommonMaster.master" %> <asp:content id="Content1" contentplaceholderid="middleContent" runat="server"> <asp:objectdatasource runat="server" id="authorTitlesSource" typename="AuthorsBiz" selectmethod="GetAuthorTitles"> <SelectParameters> <asp:QueryStringParameter Type="String" Direction="Input" Name="authorID" QueryStringField="AuthorID" /> </SelectParameters> </asp:objectdatasource> <asp:gridview runat="server" id="authorTitlesView" datasourceid="authorTitlesSource"> <alternatingrowstyle backcolor="Silver"></alternatingrowstyle> </asp:gridview> </asp:content> |
|