赛亿提成统计系统

MySqlite.php 5.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. <?php
  2. namespace app\index\model;
  3. class MySqlite
  4. {
  5. private $mydb;
  6. protected $tablename;
  7. public function __construct()
  8. {
  9. $mydb = new \SQLite3(DB . DS . 'mysqlitedb.db');
  10. if (!$mydb) {
  11. throw new \Exception("$mydb->lastErrorMsg()", 1);
  12. } else {
  13. // echo "Opened database successfully\n";
  14. $this->mydb = $mydb;
  15. }
  16. }
  17. /**
  18. * 执行sql
  19. * @param string $sql
  20. * @return mixd $res
  21. */
  22. public function exec($sql)
  23. {
  24. @$res = $this->mydb->exec($sql);
  25. return $res;
  26. }
  27. public function query($sql)
  28. {
  29. $result = $this->mydb->query($sql);
  30. return $result;
  31. }
  32. public function lastInsertRowID ()
  33. {
  34. $result = $this->mydb->lastInsertRowID();
  35. return $result;
  36. }
  37. public function lastErrorMsg()
  38. {
  39. return $this->mydb->lastErrorMsg();
  40. }
  41. /**
  42. * 查询数组列表
  43. */
  44. public function select($sql)
  45. {
  46. $result = $this->mydb->query($sql);
  47. $data = array();
  48. // var_dump($result);exit;
  49. while ($arr = $result->fetchArray(SQLITE3_ASSOC)) {
  50. $data[] = $arr;
  51. }
  52. return $data;
  53. }
  54. /**
  55. * 查询一条
  56. */
  57. public function getOneById($id, $tablename='')
  58. {
  59. $tablename = $tablename ? $tablename : $this->tablename;
  60. $sql = "SELECT * FROM `$tablename` WHERE `id`=$id;";
  61. $result = $this->mydb->query($sql);
  62. // var_dump($result);
  63. $data = $result->fetchArray(SQLITE3_ASSOC);
  64. // var_dump($data);
  65. return $data;
  66. }
  67. /**
  68. * 单列合计
  69. */
  70. public function sumColumn($column, $tablename)
  71. {
  72. $tablename = $tablename ? $tablename : $this->tablename;
  73. $sql = "SELECT sum(`$column`) as sumData FROM `$tablename`;";
  74. $result = $this->mydb->query($sql);
  75. // $data = $result->fetchArray();
  76. // var_dump($data['sumData']);exit;
  77. if ($data = $result->fetchArray(SQLITE3_ASSOC)) {
  78. return $data['sumData'];
  79. }
  80. return 0;
  81. }
  82. /**
  83. * 列表结果集
  84. */
  85. public function dataList($where='', $order= '', $desc = false, $limit = 0)
  86. {
  87. if ($order) {
  88. $where .= " order by $order";
  89. if ($desc) {
  90. $where .= " desc";
  91. } else {
  92. $where .= " asc";
  93. }
  94. }
  95. if ($limit) {
  96. $where .= " limit " . $limit;
  97. }
  98. $sql = "select * from $this->tablename $where;";
  99. return $this->select($sql);
  100. }
  101. /**
  102. * 分页结果
  103. */
  104. public function pageList($where, $page = 1, $limit = 10)
  105. {
  106. $res = $this->query("select count(*) as total from $this->tablename $where;");
  107. $data = $res->fetchArray(SQLITE3_ASSOC);
  108. $offset = ($page - 1) * $limit;
  109. $sql = "select * from $this->tablename $where limit $offset, $limit;";
  110. $list = $this->select($sql);
  111. $data['list'] = $list;
  112. $data['page'] = $page;
  113. $data['limit'] = $limit;
  114. return $data;
  115. }
  116. public function list($where='')
  117. {
  118. $sql = "select * from $this->tablename $where;";
  119. return $this->select($sql);
  120. }
  121. public function listByName($name='', $order = '', $desc = false)
  122. {
  123. $where = "";
  124. if ($name) {
  125. $where = " where name like '%$name%'";
  126. }
  127. if ($order) {
  128. $where .= " order by $order";
  129. if ($desc) {
  130. $where .= " desc";
  131. } else {
  132. $where .= " asc";
  133. }
  134. }
  135. $sql = "select * from $this->tablename $where;";
  136. $res = $this->select($sql);
  137. return $res;
  138. }
  139. /**
  140. * save
  141. */
  142. public function save($data)
  143. {
  144. $columns = "";
  145. $values = "";
  146. foreach ($data as $key => $value) {
  147. $columns .= "`" . $key . "`,";
  148. $values .= "'" . $value . "',";
  149. }
  150. $columns = rtrim($columns, ',');
  151. $values = rtrim($values, ',');
  152. $sql = "INSERT INTO `$this->tablename`(" . $columns . ") VALUES(". $values . ");";
  153. return $this->exec($sql);
  154. }
  155. /**
  156. * updateById
  157. */
  158. public function updateById($data)
  159. {
  160. $id = $data['id'];
  161. unset($data['id']);
  162. $columns = "";
  163. foreach ($data as $key => $value) {
  164. $columns .= "`" . $key . "`='" . $value ."',";
  165. }
  166. $columns = rtrim($columns, ',');
  167. $sql = "UPDATE `$this->tablename` SET $columns WHERE `id`=$id";
  168. return $this->exec($sql);
  169. }
  170. /**
  171. * deleteByIds
  172. */
  173. public function deleteById($id)
  174. {
  175. $sql = "DELETE FROM `$this->tablename` WHERE `id` IN(";
  176. if (is_array($id)) {
  177. for ($i=0; $i < count($id); $i++) {
  178. $sql .= $id[$i] . ',';
  179. }
  180. $sql = rtrim($sql, ',');
  181. $sql .= ");";
  182. } else {
  183. $sql = "DELETE FROM `$this->tablename` WHERE `id`=$id;";
  184. }
  185. return $this->exec($sql);
  186. }
  187. public function __destruct()
  188. {
  189. $this->mydb->close();
  190. }
  191. }