You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
441 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Swift.DAL.SwiftDAL;
  6. using System.Data;
  7. namespace Swift.DAL.ApplicationLogs
  8. {
  9. public class LogDAO : SwiftDao
  10. {
  11. public DataRow GetErrorDetails(string id)
  12. {
  13. var sql = "Exec proc_errorLogs @flag = 'a' ";
  14. sql += " ,@id = " + FilterString(id);
  15. return ExecuteDataRow(sql);
  16. }
  17. }
  18. }