1
Answer

Stored Procedure on a C# datatable NOT a sql table

Joe T

Joe T

14y
8.4k
1

Hi,
I have a datatable:
DataTable dt = new DataTable();
dt = report.BodyTable;
 
Now I want to run a stored procedure on dt (i.e. the in-memory dt object NOT a Sql Server table)  and return the results to another datatable.  I am using SQL SERVER 2005.

Is this possible?
Answers (1)