返回一个临时表,其中数据从游标插入到.NET

时间:2012-03-20 21:30:48

标签: c# .net sql-server-2005 cursor sqlclient

我有这样的代码:

--create temporary table
--here my cursor
--cursor begin
/*
here cursor add inserts into temporary table
*/

--cursor end
--close cursor
--I return my temporary table 

它适用于SQL。

但是因为.net它没有运行,我对“BEGIN”上的游标有这个错误

从.net开始执行它:

DataTable RegresarTabla(string query, System.Data.SqlClient.SqlConnection conexion)
{
   DataTable tabla = new DataTable();

   System.Data.SqlClient.SqlDataAdapter adapter = new System.Data.SqlClient.SqlDataAdapter(query, conexion);

   adapter.Fill(tabla);

   return tabla;
}

错误在adapter.fil(tabla);

但我的SQL代码自SQL

起作用

0 个答案:

没有答案