G
Guest
Hi, I've seen that stored procedures are not supported by SQL Server CE
But what about calling a stored procedure from a remote standard SQL SERVER
I've try this
SqlConnection PubsConn = new SqlConnection
("Data Source=server;integrated " +
"Security=sspi;initial catalog=pubs;")
SqlCommand testCMD = new SqlCommand
("TestProcedure", PubsConn)
testCMD.CommandType = CommandType.StoredProcedure
but it doesnt work
But what about calling a stored procedure from a remote standard SQL SERVER
I've try this
SqlConnection PubsConn = new SqlConnection
("Data Source=server;integrated " +
"Security=sspi;initial catalog=pubs;")
SqlCommand testCMD = new SqlCommand
("TestProcedure", PubsConn)
testCMD.CommandType = CommandType.StoredProcedure
but it doesnt work