DbOperator.cs 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Data;
  6. using System.Data.Common;
  7. using Utility.Utils.DbUtils;
  8. namespace LayerWebservice
  9. {
  10. public class DbOperator
  11. {
  12. private DbUtil db = null;
  13. public Database dbType;
  14. public DbOperator(string connStr, string dbTypeStr)
  15. {
  16. switch (dbTypeStr.Trim().ToUpper())
  17. {
  18. case "ORACLE9I":
  19. dbType = Database.ORACLE9I;
  20. break;
  21. case "ORACLE":
  22. dbType = Database.ORACLE;
  23. break;
  24. case "MSSQL":
  25. dbType = Database.MSSQL;
  26. break;
  27. default:
  28. dbType = Database.MSSQL;
  29. break;
  30. }
  31. db = new DbUtil(dbType, connStr);
  32. }
  33. public bool Connect()
  34. {
  35. try
  36. {
  37. db.Connect();
  38. return true;
  39. }
  40. catch (Exception ee)
  41. {
  42. return false;
  43. }
  44. }
  45. public bool Close()
  46. {
  47. try
  48. {
  49. db.Close();
  50. return true;
  51. }
  52. catch
  53. {
  54. return false;
  55. }
  56. }
  57. public DataTable Select(string sqlStr, int pageSize = 0, int pageIndex = -1)
  58. {
  59. DataTable dt;
  60. try
  61. {
  62. dt = db.Select(sqlStr, 0, 0);
  63. }
  64. catch(Exception e)
  65. {
  66. return null;
  67. throw;
  68. }
  69. return dt;
  70. }
  71. public DataTable Select(ref DbTransaction tran, string sqlStr, int pageSize = 0, int pageIndex = -1)
  72. {
  73. DataTable dt;
  74. try
  75. {
  76. dt = db.Select(ref tran, sqlStr, 0, 0);
  77. }
  78. catch
  79. {
  80. return null;
  81. throw;
  82. }
  83. return dt;
  84. }
  85. public int Update(string sqlStr, string separator)
  86. {
  87. int resCount = 0;
  88. resCount = db.Update(sqlStr, separator);
  89. return resCount;
  90. }
  91. public int Update(ref DbTransaction tran, string sqlStr, string separator)
  92. {
  93. int resCount = 0;
  94. resCount = db.Update(ref tran, sqlStr, separator);
  95. return resCount;
  96. }
  97. }
  98. }