DBManager.swift 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. //
  2. // DBManager.swift
  3. // dcwj
  4. //
  5. // Created by Virgil on 16/8/30.
  6. // Copyright © 2016年 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class DBManager: NSObject {
  10. static var commonDB: FMDatabase!
  11. ///打开数据库
  12. class func openDB() -> Bool {
  13. if commonDB == nil {
  14. commonDB = FMDatabase(path: CommonDBManager.getDBPath())
  15. }
  16. let res = commonDB.open()
  17. if !res {
  18. return false
  19. }
  20. return true
  21. }
  22. ///关闭数据库
  23. class func closeDB() {
  24. if commonDB != nil {
  25. commonDB.close()
  26. }
  27. }
  28. ///检测表是否存在
  29. class func tableExists(tableName: String) -> Bool {
  30. if !openDB() {
  31. return false
  32. }
  33. let res = commonDB.tableExists(tableName)
  34. if res {
  35. closeDB()
  36. return true
  37. } else {
  38. closeDB()
  39. return false
  40. }
  41. }
  42. ///检测列名是否存在
  43. class func columnExists(columnName: String, tableName: String) -> Bool {
  44. if !openDB() {
  45. return false
  46. }
  47. // let res = commonDB.columnExists(tableName, columnName: columnName)
  48. let res = commonDB.columnExists(columnName, inTableWithName: tableName)
  49. if res {
  50. closeDB()
  51. return true
  52. } else {
  53. closeDB()
  54. return false
  55. }
  56. }
  57. ///根据sql 获取数据 返回数组 没有时数组个数为0 参数id=? values
  58. class func getDataForSql(sql: String, values: [String]?) -> NSMutableArray {
  59. let reData = NSMutableArray()
  60. if !openDB() {
  61. return reData
  62. }
  63. do {
  64. let set = try commonDB.executeQuery(sql, values: values)
  65. while set.next() {
  66. reData.add(NSMutableDictionary(dictionary: set.resultDictionary!))
  67. }
  68. } catch {
  69. }
  70. closeDB()
  71. return reData
  72. }
  73. ///根据sql 获取 单条数据,没有时返回nil 参数id=?
  74. class func getDictionaryForSql(sql: String, values: [AnyObject]?) -> NSMutableDictionary? {
  75. let reData = NSMutableDictionary()
  76. if !openDB() {
  77. return nil
  78. }
  79. do {
  80. let set = try commonDB.executeQuery(sql, values: values)
  81. while set.next() {
  82. reData.setDictionary(set.resultDictionary!)
  83. break
  84. }
  85. } catch {
  86. return nil
  87. }
  88. closeDB()
  89. return reData
  90. }
  91. /// 获取第一个值 执行失败返回空字符串
  92. class func getValueForSql(sql: String, values: [AnyObject]?) -> String {
  93. var reData = ""
  94. if !openDB() {
  95. return reData
  96. }
  97. do {
  98. let set = try commonDB.executeQuery(sql, values: values)
  99. while set.next() {
  100. if set.string(forColumnIndex: 0) != nil {
  101. reData = set.string(forColumnIndex: 0)!
  102. }
  103. break
  104. }
  105. } catch {
  106. }
  107. closeDB()
  108. return reData
  109. }
  110. ///获取统计值 执行失败 返回 -1
  111. class func getCountForSql(sql: String, values: [AnyObject]?) -> Int {
  112. var reData = -1
  113. if !openDB() {
  114. return reData
  115. }
  116. do {
  117. let set = try commonDB.executeQuery(sql, values: values)
  118. while set.next() {
  119. reData = Int(set.int(forColumnIndex: 0))
  120. break
  121. }
  122. } catch {
  123. }
  124. closeDB()
  125. return reData
  126. }
  127. ///更新数据 含新增 修改 ?代替
  128. class func updateDataForSql(sql: String, values: [String]?) -> Bool {
  129. if !openDB() {
  130. return false
  131. }
  132. do {
  133. _ = try commonDB.executeUpdate(sql, values: values)
  134. } catch {
  135. closeDB()
  136. return false
  137. }
  138. closeDB()
  139. return true
  140. }
  141. ///更新数据 多条 含新增 修改 ? values
  142. class func updateDataForSqls(sqls: [String], values: [[String]?]) -> Bool {
  143. if !openDB() {
  144. return false
  145. }
  146. do {
  147. var i = 0
  148. for sql in sqls {
  149. _ = try commonDB.executeUpdate(sql, values: values[i])
  150. i+=1
  151. }
  152. } catch {
  153. closeDB()
  154. return false
  155. }
  156. closeDB()
  157. return true
  158. }
  159. ///增加表字段
  160. class func addColunm(tabName: String, colName: String, colType: String, defauleValue: String) -> Bool {
  161. let sql = "ALTER TABLE '\(tabName)' ADD '\(colName)' \(colType) DEFAULT '\(defauleValue)'"
  162. return updateDataForSql(sql: sql, values: [])
  163. }
  164. }