Joe T

Joe T

  • NA
  • 1
  • 8.1k

Stored Procedure on a C# datatable NOT a sql table

Oct 12 2010 2:48 PM

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)