Create Assembly

Discussion in 'Databases' started by JohnHadj, Mar 25, 2009.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. In the application I am trying to host on DASP I have database triggers that use SQL functions defined as External. These are written in vb, and made available to the database through the CREATE ASSEMBLY and CREATE FUNCTION.

    CREATE ASSEMBLY PAv6Functions FROM 'C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\PAv6Functions.DLL'
    WITH PERMISSION_SET = UNSAFE

    CREATE
    FUNCTION ProcessText(@wfile AS varbinary(max), @wproperty AS nvarchar(max), @wvalue AS nvarchar(max)) returns varbinary(max)
    as external name [PAv6Functions].[PAv6NameSpace.PAv6Class].ProcessText

    Is there any way of doing this in DASP?
    John
     
  2. Bruce

    Bruce DiscountASP.NET Staff

    nope.
     
  3. OK, and I understand why. Thanks.

    Saves me hours of messing around experimenting with things that won't work.

    John
     
Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.

Share This Page