数据库
首页 > 数据库> > SQLCLR和IronPython

SQLCLR和IronPython

作者:互联网

我感到很疯狂,我已经决定在Python中编写一个用户定义的函数,可以在SQL Server 2008中运行.我有兴趣这样做,因为我为PostgreSQL编写了几千行PL / Python函数我很想知道我是否可以在SQL Server上运行该项目.

我正在寻找IronPython第一次尝试解决,如果我可以转换像这样的C#…

using System;
using System.Data;
using System.Data.SqlClient;
using System.Data.SqlTypes;
using Microsoft.SqlServer.Server;

public partial class UserDefinedFunctions
{
    [Microsoft.SqlServer.Server.SqlFunction]
    public static SqlString Function1()
    {
        // Put your code here
        return new SqlString("Hello");
    }
};

…进入Python.

有没有人对此有任何想法?可能吗?

我特别困惑的是注释:

[Microsoft.SqlServer.Server.SqlFunction]

我如何用Python编写?看起来有点像装饰者:)

欢迎所有建议.

干杯,
汤姆

解决方法:

根据this article,你在浪费你的时间.显然,即使在UNSAFE程序集中,您也无法在SQL CLR中使用动态语言.

标签:python,sql-server,ironpython,sqlclr
来源: https://codeday.me/bug/20190705/1383844.html