45fan.com - 路饭网

搜索: 您的位置主页 > 电脑频道 > 电脑教程 > 阅读资讯:怎么样在SQL Server2005中使用.NET程序集?

怎么样在SQL Server2005中使用.NET程序集?

2016-09-09 10:41:29 来源:www.45fan.com 【

怎么样在SQL Server2005中使用.NET程序集?

昨天完成了一个最简单的在数据库中创建标量值函数,今天主要完成表值函数,存储过程和用户定义类型在和.NET结合下的使用方法.
1,表值函数
所谓表值函数就是说这个函数返回的结果是一个Table,而不是单个的值.
在.NET 中创建这样的函数,返回的结果是一个IEnumerable接口.这个接口非常灵活,所有.NET数组集合等都是实现了该接口的.下面我们举一个简单的例子来说明.
在VS2005中创建一个类Student,这个就是我们要返回的表的内容,类下面有属性int Age,string sName,DateTime Birthday,int SID;
然后在另外一个类UserFunction中写入如下代码:
怎么样在SQL Server2005中使用.NET程序集?[SqlFunction(FillRowMethodName="FillRow")]
怎么样在SQL Server2005中使用.NET程序集?
publicstaticIEnumerableGetStudent()
怎么样在SQL Server2005中使用.NET程序集?怎么样在SQL Server2005中使用.NET程序集?
{
怎么样在SQL Server2005中使用.NET程序集?Hashtablehash
=newHashtable();
怎么样在SQL Server2005中使用.NET程序集?
for(inti=0;i<3;i++)
怎么样在SQL Server2005中使用.NET程序集?怎么样在SQL Server2005中使用.NET程序集?
{
怎么样在SQL Server2005中使用.NET程序集?Students
=newStudent();
怎么样在SQL Server2005中使用.NET程序集?s.SID
=i;
怎么样在SQL Server2005中使用.NET程序集?...
怎么样在SQL Server2005中使用.NET程序集?hash.Add(i,s);
怎么样在SQL Server2005中使用.NET程序集?}

怎么样在SQL Server2005中使用.NET程序集?returnhash.Values;
怎么样在SQL Server2005中使用.NET程序集?}

怎么样在SQL Server2005中使用.NET程序集?publicstaticvoidFillRow(objectobj,refSqlInt32id,refSqlStringname,refSqlDateTimebir,refSqlInt32age)
怎么样在SQL Server2005中使用.NET程序集?怎么样在SQL Server2005中使用.NET程序集?
{
怎么样在SQL Server2005中使用.NET程序集?Students
=(objasStudent);
怎么样在SQL Server2005中使用.NET程序集?id
=s.SID;
怎么样在SQL Server2005中使用.NET程序集?name
=s.sName;
怎么样在SQL Server2005中使用.NET程序集?bir
=s.Birthday;
怎么样在SQL Server2005中使用.NET程序集?age
=s.Age;
怎么样在SQL Server2005中使用.NET程序集?
怎么样在SQL Server2005中使用.NET程序集?}

怎么样在SQL Server2005中使用.NET程序集?
第一个属性中指定FillRowMethodName就是为了将返回的IEnumerable接口中的数据进行转换,将数据库无法认识的集合转换为数据库人生的字段.下面的函数FillRow就是具体转换的过程.
这样写完成以后,在数据库那边添加好这个程序集,然后就可以创建表值函数了:
怎么样在SQL Server2005中使用.NET程序集?createfunctionBuildTable()
怎么样在SQL Server2005中使用.NET程序集?
returnstable(SIDint,[sName]nvarchar(100),Birthdaydatetime,Ageint)
怎么样在SQL Server2005中使用.NET程序集?
as
怎么样在SQL Server2005中使用.NET程序集?externalnameSQLFunction.[SQLFunction.UserFunction].GetStudent

这儿就不用太多的解释了,就是将名为SQLFunction的程序集中的[名字空间.类].方法添加到BuildTable函数中.
这儿需要说明一下就是数据库中的类型和.NET中的类型的对应问题.int,datetime就不说了,主要是.NET中的string,在数据库中没有string类型,在FillRow中指出了类型SqlString,而这个类型的对应是nchar,nvarchar.这儿不能对应char,varchar,我不知道为什么必须是对应nchar的.所以上面我们写的是[sName] nvarchar(100).
大功告成,测试一下,输入语句select * from BuildTable()看看返回你的表没有.
2.存储过程
CLR存储过程和CLR函数非常相似,不过有几点更高的能力:
CLR存储过程可以有一个返回值,也可以写输出参数,可以返回消息给客户程序,可以调用DDL和DML语句.
.NET创建存储过程要编写为静态函数,然后加上SqlProcedure属性.
比如我们写一个简单的存储过程
怎么样在SQL Server2005中使用.NET程序集?[SqlProcedure]
怎么样在SQL Server2005中使用.NET程序集?
publicstaticintAdd(inta,intb)
怎么样在SQL Server2005中使用.NET程序集?怎么样在SQL Server2005中使用.NET程序集?
{
怎么样在SQL Server2005中使用.NET程序集?
returna+b;
怎么样在SQL Server2005中使用.NET程序集?}

然后在数据库中写入:
怎么样在SQL Server2005中使用.NET程序集?createprocedureAdd2Num
怎么样在SQL Server2005中使用.NET程序集?
@aint,@bint
怎么样在SQL Server2005中使用.NET程序集?as
怎么样在SQL Server2005中使用.NET程序集?externalnameSQLFunction.[SQLFunction.UserFunction].[Add]

整个代码我就不用解释了,和前面创建函数一样.
我们运行看看结果:
怎么样在SQL Server2005中使用.NET程序集?declare@aint
怎么样在SQL Server2005中使用.NET程序集?exec@a=Add2Num10,12
怎么样在SQL Server2005中使用.NET程序集?print@a

3.用户定义类型(UDT)
要创建UDT类必须符合"UDT规范",.NET中的约束如下:
他们必须带SqlUserDefinedType 属性
必须带有Serializable属性
必须实现INullable接口
必须博阿訇公开和静态的Parse和ToString方法以用于转换数据类型字符串或逆向转换.
必须暴露数据元素为公开字段或公开属性.
好,那我们就创建一个简单的UDT复数类如下:
怎么样在SQL Server2005中使用.NET程序集?[Serializable]
怎么样在SQL Server2005中使用.NET程序集?[SqlUserDefinedType(Format.Native)]
怎么样在SQL Server2005中使用.NET程序集?[StructLayout(LayoutKind.Sequential)]
怎么样在SQL Server2005中使用.NET程序集?
publicclassComplex:INullable
怎么样在SQL Server2005中使用.NET程序集?怎么样在SQL Server2005中使用.NET程序集?
{
怎么样在SQL Server2005中使用.NET程序集?
boolisNull=false;
怎么样在SQL Server2005中使用.NET程序集?
doublereal,imag;
怎么样在SQL Server2005中使用.NET程序集?
publicboolIsNull
怎么样在SQL Server2005中使用.NET程序集?怎么样在SQL Server2005中使用.NET程序集?
{
怎么样在SQL Server2005中使用.NET程序集?怎么样在SQL Server2005中使用.NET程序集?
get{returnisNull;}
怎么样在SQL Server2005中使用.NET程序集?}

怎么样在SQL Server2005中使用.NET程序集?publicdoubleReal
怎么样在SQL Server2005中使用.NET程序集?怎么样在SQL Server2005中使用.NET程序集?
{
怎么样在SQL Server2005中使用.NET程序集?怎么样在SQL Server2005中使用.NET程序集?
get{returnreal;}
怎么样在SQL Server2005中使用.NET程序集?怎么样在SQL Server2005中使用.NET程序集?set{real=value;}
怎么样在SQL Server2005中使用.NET程序集?}

怎么样在SQL Server2005中使用.NET程序集?publicdoubleImag
怎么样在SQL Server2005中使用.NET程序集?怎么样在SQL Server2005中使用.NET程序集?
{
怎么样在SQL Server2005中使用.NET程序集?怎么样在SQL Server2005中使用.NET程序集?
get{returnimag;}
怎么样在SQL Server2005中使用.NET程序集?怎么样在SQL Server2005中使用.NET程序集?set{imag=value;}
怎么样在SQL Server2005中使用.NET程序集?}

怎么样在SQL Server2005中使用.NET程序集?publicoverridestringToString()
怎么样在SQL Server2005中使用.NET程序集?怎么样在SQL Server2005中使用.NET程序集?
{
怎么样在SQL Server2005中使用.NET程序集?
if(isNull)
怎么样在SQL Server2005中使用.NET程序集?怎么样在SQL Server2005中使用.NET程序集?
{
怎么样在SQL Server2005中使用.NET程序集?
return"NULL";
怎么样在SQL Server2005中使用.NET程序集?}

怎么样在SQL Server2005中使用.NET程序集?else
怎么样在SQL Server2005中使用.NET程序集?怎么样在SQL Server2005中使用.NET程序集?{
怎么样在SQL Server2005中使用.NET程序集?
returnreal+","+imag;
怎么样在SQL Server2005中使用.NET程序集?}

怎么样在SQL Server2005中使用.NET程序集?}

怎么样在SQL Server2005中使用.NET程序集?publicstaticComplexParse(SqlStrings)
怎么样在SQL Server2005中使用.NET程序集?怎么样在SQL Server2005中使用.NET程序集?
{
怎么样在SQL Server2005中使用.NET程序集?
if(s==null||s.IsNull)
怎么样在SQL Server2005中使用.NET程序集?怎么样在SQL Server2005中使用.NET程序集?
{
怎么样在SQL Server2005中使用.NET程序集?
returnnull;
怎么样在SQL Server2005中使用.NET程序集?}

怎么样在SQL Server2005中使用.NET程序集?else
怎么样在SQL Server2005中使用.NET程序集?怎么样在SQL Server2005中使用.NET程序集?{
怎么样在SQL Server2005中使用.NET程序集?Complexc
=newComplex();
怎么样在SQL Server2005中使用.NET程序集?
stringstr=Convert.ToString(s);
怎么样在SQL Server2005中使用.NET程序集?
string[]st=str.Split(',');
怎么样在SQL Server2005中使用.NET程序集?c.real
=Convert.ToDouble(st[0]);
怎么样在SQL Server2005中使用.NET程序集?c.imag
=Convert.ToDouble(st[1]);
怎么样在SQL Server2005中使用.NET程序集?
returnc;
怎么样在SQL Server2005中使用.NET程序集?}

怎么样在SQL Server2005中使用.NET程序集?}

怎么样在SQL Server2005中使用.NET程序集?}
编译好,在数据库中添加程序集后,我们运行如下代码:
怎么样在SQL Server2005中使用.NET程序集?createtypeComplex
怎么样在SQL Server2005中使用.NET程序集?externalnameSQLFunction.
[SQLFunction.Complex]

这样我们就创建好了用户定义类型Complex.
数据库事例代码中有相关内容,参见:
/Program Files/Microsoft SQL Server/90/Samples/Engine/Programmability/CLR/UserDefinedDataType
 

本文地址:http://www.45fan.com/dnjc/73989.html
Tags: sql .net server2005
编辑:路饭网
关于我们 | 联系我们 | 友情链接 | 网站地图 | Sitemap | App | 返回顶部