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.

27 lines
641 B

4 years ago
  1. using Common.Model;
  2. using System;
  3. using System.Data;
  4. using System.Text;
  5. namespace Repository.DAO.Application
  6. {
  7. public interface IApplicationDAO
  8. {
  9. DataSet ExecuteDataset(StringBuilder sql);
  10. DataTable ExecuteDataTable(StringBuilder sql);
  11. DataRow ExecuteDataRow(StringBuilder sql);
  12. String FilterString(object strVal);
  13. String FilterQuoteNative(string strVal);
  14. String FilterQuote(string strVal);
  15. DbResponse ParseDbResult(DataTable dt);
  16. DbResponse ParseDbResult(StringBuilder sql);
  17. DataTable GetTable(StringBuilder sql);
  18. }
  19. }