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

SQL
Create PROCEDURE LoadAppointment

AS

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

GO
Posted
Comments
Karthik Harve 4-Mar-13 2:35am    
This is not a question. if any thing wrong sql server would throw error. if the server is throwing any error, then paste that error message.

1 solution

Looks like a Valid one. Now, you should have simply run and checked in the SQL server yourself instead of posting and asking here.
Refer: MSDN: CREATE PROCEDURE (Transact-SQL)[^]

Make sure this is correct table reference: [Scheduler].[dbo].[tblAppointments]
 
Share this answer
 
Comments
ArunAmalraj 4-Mar-13 3:43am    
I have this code: But, my DataTable is not getting loaded with any data.

//var conn = new SqlConnection(ConnectionString);
//var cmd = new SqlCommand
// {
// Connection = conn,
// CommandText = "LoadAppointment",
// CommandType = CommandType.StoredProcedure
// };
////cmd.Parameters.Add(new SqlParameter("Parametr Name", "Parameter value"));
//cmd.Connection.Open();
//var dr = cmd.ExecuteReader(CommandBehavior.CloseConnection);
//var dt = new DataTable();
//dt.Load(dr);

Thanks for your help so far. Awaiting for a Solution to accept.

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