- 1 public static DataSet ExecProcDataSet(string procName, SqlParameter[] parameters, string connStr)
- 2 {
- 3 using (SqlConnection conn = new SqlConnection(connStr))
- 4 {
- 5 conn.Open();
- 6 SqlCommand cmd = GetSqlCommand(conn, procName, CommandType.StoredProcedure, parameters);
- 7 cmd.CommandTimeout = 0;
- 8 SqlDataAdapter da = new SqlDataAdapter(cmd);
- 9 DataSet ds = new DataSet();
- 10 da.Fill(ds);
- 11 cmd.Dispose();
- 12 return ds;
- 13 }
- 14 }