Sql Server 数据库中调用dll文件的过程

1.首先新建一个空的解决方案,并添加一个类库,代码如下,编译并生产dll

sql;"> using System; using System.Collections.Generic; using System.Data.sqlTypes; using System.Linq; using System.Text; namespace TEST { public class TestTrans { [Microsoft.sqlServer.Server.sqlFunction] public static sqlString GenerateDecryptString(string name) { string decode = string.Empty; decode = string.Format("HELLO WORLD {0}!",name);//DecryptString(dataxML.Value); sqlString sqlValue = new sqlString(decode); return sqlValue; } } }

2.启用CLR功能

默认情况下,sql Server中的CLR是关闭的,所以我们需要执行如下命令打开CLR:

sql;"> exec sp_configure 'clr enabled',1 reconfigure Go

3.将程序集引用到数据库

sql;"> CREATE ASSEMBLY testHelloWorld FROM 'C:\TEST.dll' --('C:/TEST.dll'w为错误写法)

4.创建函数

sql;"> CREATE FUNCTION dbo.clrHelloWorld ( @name as nvarchar(200) ) RETURNS nvarchar(200) AS EXTERNAL NAME testHelloWorld.[TEST.TestTrans].GenerateDecryptString

5.调用函数

sql;"> SELECT dbo.clrHelloWorld('耿耿')

6.执行结果

HELLO WORLD 耿耿!

总结

以上所述是小编给大家介绍的sql Server 数据库调用dll文件的过程,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对编程之家网站的支持

相关文章

(一)日志传送架构 (1.1)相关服务器 主服务器 :用于生产的服务器,上面运行这生产SQL Server数据库...
(一)事故背景 最近在SQL Server 2012生产数据库上配置完事物复制(发布订阅)后,生产数据库业务出现了...
(一)测试目的 目前公司使用的SQL SERVER 2012高可用环境为主备模式,其中主库可执行读写操作,备库既...
(一)背景个人在使用sql server时,用到了sql server的发布订阅来做主从同步,类似MySQL的异步复制。在...
UNION和OR谓词 找出 product 和 product2 中售价高于 500 的商品的基本信息. select * from product wh...
datawhale组队学习task03