> easiest way to upload a C# class library to a SQL server 2005 and deploy
> as CLR function
[quoted text clipped - 3 lines]
> with a SQL Server Project? or do i have to manualu upload the DLL in all
> cases?
If you decorate your source code with the adequate attributes, such as
[Microsoft.SqlServer.Server.SqlFunction(Name:="whatever")], then Visual
Studio is able to deploy it automatically to SqlServer when you run the test
project. No need to manually upload the dll during development time. You may
still want to write a sql script with all the CREATE statements, to be used
when you need to deploy or redeploy your dll on the production servers.
DR - 26 Oct 2007 19:33 GMT
thanks!
>> easiest way to upload a C# class library to a SQL server 2005 and deploy
>> as CLR function
[quoted text clipped - 11 lines]
> to be used when you need to deploy or redeploy your dll on the production
> servers.