vote up 1 vote down star

In short, where can I find C#/VB client side sample code that calls CLR stored procedure with some argumnet [like a sqlxml data] and receives a datareader or other form of result ?

Also how do I periodically receive information from the running CLR stored proc sent through SQlContext.Pipe.Send() method ?

flag

40% accept rate

5 Answers

vote up 1 vote down
// run a stored procedure that takes a parameter
    public void RunStoredProcParams()
    {
    	SqlConnection conn = null;
    	SqlDataReader rdr  = null;

    	// typically obtained from user
    	// input, but we take a short cut
    	string custId = "FURIB";

    	Console.WriteLine("\nCustomer Order History:\n");

    	try
    	{
    		// create and open a connection object
    		conn = new 
    			SqlConnection("Server=(local);DataBase=Northwind;Integrated Security=SSPI");
    		conn.Open();

    		// 1.  create a command object identifying
    		//     the stored procedure
    		SqlCommand cmd  = new SqlCommand(
    			"dbo.CustOrderHist", conn);

    		// 2. set the command object so it knows
    		//    to execute a stored procedure
    		cmd.CommandType = CommandType.StoredProcedure;

    		// 3. add parameter to command, which
    		//    will be passed to the stored procedure
    		cmd.Parameters.Add(
    			new SqlParameter("@CustomerID", custId));

    		// execute the command
    		rdr = cmd.ExecuteReader();

    		// iterate through results, printing each to console
    		while (rdr.Read())
    		{
    			Console.WriteLine(
    				"Product: {0,-35} Total: {1,2}",
    				rdr["ProductName"],
    				rdr["Total"]);
    		}
    	}
    	finally
    	{
    		if (conn != null)
    		{
    			conn.Close();
    		}
    		if (rdr != null)
    		{
    			rdr.Close();
    		}
    	}	
    }
}

    enter code here
link|flag
Thanks. This is very close to what I want. Still have one issue, how do I periodically receive updates from the stored procedure ? for example, I have a CLR SPROC that goes in a loop and uses "SqlContext.Pipe.Send(%Complete)" to notify the client on the progress. How do I receive this information on the client side ? – captonssj Oct 30 at 14:33
vote up 0 vote down

Just the same way you call ordinary stroed procedures. May be...

EXEC StoredProcedure1

I wrote a blog long back - Write your first SQL Server CLR Stored Procedure

link|flag
vote up 0 vote down

I know that I have usually created a regular T-SQL stored procedure which calls my CLR functions or stored procs. Then they can be treated just like all other stored procs.

link|flag
vote up 0 vote down
  // Create a record object that represents an individual row, including it's metadata.
      SqlDataRecord record = new SqlDataRecord(new SqlMetaData("stringcol", SqlDbType.NVarChar, 128));

      // Populate the record.
      record.SetSqlString(0,( "Hello World!" + System.DateTime.Now));

      // Send the record to the client.
      SqlContext.Pipe.Send(record);
link|flag
Yes, I am aware of this. How do I receive this infomration on the client side if I have SqlContext.Pipe.Send(record) inside a loop ? I want a client side sample code. – captonssj Nov 2 at 14:36
vote up 0 vote down
string connectionString = ConfigurationManager.AppSettings["ConnectDB"];
        SqlConnection sn = new SqlConnection(connectionString);
        SqlParameter[] sqlParameters = new SqlParameter[1];
        sn.Open();
        SqlCommand dCmd = new SqlCommand("dbo.HelloWorld", sn);
        dCmd.CommandType = CommandType.StoredProcedure;
        SqlDataReader rdr = null;
        rdr = dCmd.ExecuteReader();
        while (rdr.Read())
            {
            for (int i = 0; i < rdr.FieldCount; i++)
                Response.Write(rdr[i]);
            }
        sn.Close();
        }
link|flag
@captonssj hav u check this? – surajitkhamrai Nov 7 at 6:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.