为什么返回的行数总是0呢?那位高手能帮忙关注并解决一下?在线等!!!!!!!
using System;
using WebNews.Model;
using WebNews.IDAL;
using WebNews.DBUtility;
using System.Data;
using System.Data.SqlClient;
public void GetNewsType(TypeDataSet typeData)
{
string[] arrayTableName = new string[]{"NewsType"};
SqlHelper.FillDataset(SqlHelper.ConnectionString,CommandType.StoredProcedure,SQL_SELECT_NewsType,typeData,arrayTableName);
}
\\其中SqlHelper类为微软提供的数据库操纵类。TypeDataSet 为xml架构数据集
问题是:为什么返回的行数总是0呢?那位高手能帮忙关注并解决一下?
--------------------编程问答-------------------- 先顶下
出现BUG
// dataAdapter.TableMappings.Add(tableName, tableNames[index]);
// tableName += (index + 1).ToString();
改为一下一句:
dataAdapter.TableMappings.Add((index>0) ? (tableName+index.ToString()):tableName, tableNames[index]);
还是返回0行 晕!!!!!!
再弄不出来要闻问老师了 --------------------编程问答-------------------- 帮顶 --------------------编程问答-------------------- 没用过SQLHELPER,帮顶一下. --------------------编程问答-------------------- 为什么一定要用SqlHelper?
补充:.NET技术 , ASP.NET