admin管理员组文章数量:1384402
Take the following code:
DECLARE @param1 NVARCHAR(4000);
SET @param1 = N'This is an _underline_ test';
EXEC sp_execute_external_script
@language = N'dotnet',
@script = N'<MarkdownHelper>.<MarkdownHelper>',
@input_data_1 = N'SELECT Markdown',
@param1 = @param1;
This is straight from the example from Microsoft:
I have already imported the library successfully. I get the error:
Msg 214, Level 16, State 175, Procedure sp_execute_external_script, Line 1 [Batch Start Line 0]
Procedure expects parameter '@params' of type 'ntext/nchar/nvarchar'
本文标签:
版权声明:本文标题:.net - Trying to use dotnet extensions for SQL Server, get error "Procedure expects parameter '@params' 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744536115a2611325.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论