Call a stored procedure from ado.net and pass parameter to it ?
Answer Posted / ashwani
using System;
using System.Data;
using System.Data.OleDb;
using System.Data.SqlClient;
class MainClass
{
static void Main(string[] args)
{
string SQL = "SELECT * FROM Orders";
string ConnectionString ="Integrated
Security=SSPI;Initial Catalog=Northwind;Data Source=localhost;";
SqlConnection conn = new
SqlConnection(ConnectionString);
SqlCommand StoredProcedureCommand = new
SqlCommand("Sales By Year", conn);
StoredProcedureCommand.CommandType =
CommandType.StoredProcedure;
SqlParameter myParm1 =
StoredProcedureCommand.Parameters.Add( "@Beginning_Date",
SqlDbType.DateTime, 20);
myParm1.Value = "7/1/1996";
SqlParameter myParm2 =
StoredProcedureCommand.Parameters.Add("@Ending_Date",
SqlDbType.DateTime, 20);
myParm2.Value = "7/31/1996";
conn.Open();
SqlDataReader TheReader =
StoredProcedureCommand.ExecuteReader();
string orderlist = "";
while (TheReader.Read())
{
string nextID = TheReader["OrderID"].ToString();
string nextSubtotal = TheReader["Subtotal"].ToString();
orderlist += nextID + '\t' + nextSubtotal + '\n';
}
conn.Close();
}
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the DataTableCollection?
Which is the best method to get two values from the database?
Which database is the ado.net?
What is ado in agriculture?
Explain all the classes those are used for database connections between sql server and asp.net?
How do you merge 2 datasets into the third dataset in a simple manner?
What is ado.net objects?
Why is it important to close an ado.net application?
How to perform sorting on a table in ADO.NET?
How to add a javaScript function in a datagrid?
What is aggregate root?
What is the difference between an ADO.NET Dataset and an ADO Recordset?
Which provider is used to connect ms access, oracle, etc…?
Which is faster datareader or dataadapter?
How to identify the updated rows in a dataset?