SQL CLR存储过程输出

时间:2010-12-29 12:48:27

标签: sql clr sqlclr

有一个名为User的简单类及其对象列表

  public class User
{
public int ID;
public string UserName;
public string UserPassword;
}
...
List userList = new List();
   

我可以将这个User对象列表作为执行SLQ CLR存储过程的结果吗? 例如我想得到这个

 
ID   UserName  UserPassword
1    Ted       SomePassword
2    Sam       Password2
3    Bill      dsdsd


[SqlProcedure]
public static void GetAllocations()
{
    // what here ??
}

P.S。请不要建议我使用Sql函数。它不适合我,因为它不支持输出参数

P.S.2我将非常感谢您的帮助!

1 个答案:

答案 0 :(得分:3)

尝试使用SqlDataRecord创建虚拟表,并通过Pipe对象的SqlContext属性发送它:

[SqlProcedure]
public static void GetAllocations()
{
    // define table structure
    SqlDataRecord rec = new SqlDataRecord(new SqlMetaData[] {
        new SqlMetaData("ID", SqlDbType.Int),
        new SqlMetaData("UserName", SqlDbType.VarChar),
        new SqlMetaData("UserPassword", SqlDbType.VarChar),
    });

    // start sending and tell the pipe to use the created record
    SqlContext.Pipe.SendResultsStart(rec);
    {
        // send items step by step
        foreach (User user in GetUsers())
        {
            int id = user.ID;
            string userName = user.UserName;
            string userPassword = user.UserPassword;

            // set values
            rec.SetSqlInt32(0, id);
            rec.SetSqlString(1, userName);
            rec.SetSqlString(2, userPassword);

            // send new record/row
            SqlContext.Pipe.SendResultsRow(rec);
        }
    }
    SqlContext.Pipe.SendResultsEnd();    // finish sending
}