About ASP. net2.0 compiling the Extended Stored Procedure

Source: Internet
Author: User

Sqlpipe class
C # copyCode
[Microsoft. sqlserver. server. sqlprocedure ()]
Public static void storedprocexecutecommand (INT rating)
{
// Connect through the context connection.
Using (sqlconnection connection = new sqlconnection ("context connection = true "))
{
Connection. open ();

Sqlcommand command = new sqlcommand (
"Select vendorid, accountnumber, name from purchasing. Vendor" +
"Where creditrating <= @ rating", connection );
Command. Parameters. addwithvalue ("@ rating", rating );

// execute the command and send the results directly to the client.
sqlcontext. pipe. executeandsend (command);

}< br> How is the execution result of the above Stored Procedure stored in ASP. is the net2.0 application Program called?
If You Want To embody the returned results of the above stored procedure in the datalist control, what is the calling code of the application?

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.