using System; using System.Data; using System.Data.SqlClient; using WebSqlHelper; namespace DSWeb.EntityDA { public class CodeSourceDA { private const string PARM_CODE_SOURCE_GID = "@gid"; private const string PARM_CODE_SOURCE_SOURCE_NAME = "@source_name"; private const string PARM_CODE_SOURCE_CORP_ID = "@corp_id"; #region 获取SQL语句查询数据集 /// /// 获取SQL语句查询数据集 /// /// /// public DataSet GetExcuteSql(string strSql) { DataSet tempSet = new DataSet(); tempSet = SqlHelper.ExecuteDataset(SqlHelper.ConnectionStringLocalTransaction, CommandType.Text, strSql); return tempSet; } #endregion } }