Click here to Skip to main content
15,895,011 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hello,

My task is to: Load data into a Form using Stored Procedures only.

Mean that: By not using Dataset or Table Adapters

Note: My Stored Procedure selects all records from a particular table.

Would like to know: How to connect this through my C# code and load datas into my form.

Any help would be appreciated a lot!! Thanks in advance
Posted

1 solution

SqlConnection conn = new SqlConnection("Connectionstring....");
SqlCommand cmd = new SqlCommand();
cmd.Connection = conn;
cmd.CommandText = "Procedurename..... ";
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.Add(new SqlParameter("Parametr Name", "Parameter value"));
cmd.Connection.Open();
SqlDataReader dr = cmd.ExecuteReader(CommandBehavior.CloseConnection);
DataTable dt = new DataTable();
dt.Load(dr);
dataGridView1.DataSource = dt;


Please let me know if you have any doubt in
 
Share this answer
 
Comments
ArunAmalraj 4-Mar-13 2:15am    
This is my StoredProcedure:

Create PROCEDURE LoadAppointment

AS

SELECT * FROM [Scheduler].[dbo].[tblAppointments]

GO

And the datatable doesn't load any data.

Note: My Table has its own records.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900