123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- <?php
- namespace app\index\model;
- class MySqlite
- {
- private $mydb;
- protected $tablename;
- public function __construct()
- {
- $mydb = new \SQLite3(DB . DS . 'mysqlitedb.db');
- if (!$mydb) {
- throw new \Exception("$mydb->lastErrorMsg()", 1);
- } else {
-
- $this->mydb = $mydb;
- }
- }
-
- * 执行sql
- * @param string $sql
- * @return mixd $res
- */
- public function exec($sql)
- {
- @$res = $this->mydb->exec($sql);
- return $res;
- }
- public function query($sql)
- {
- $result = $this->mydb->query($sql);
- return $result;
- }
-
- public function lastInsertRowID ()
- {
- $result = $this->mydb->lastInsertRowID();
- return $result;
- }
- public function lastErrorMsg()
- {
- return $this->mydb->lastErrorMsg();
- }
-
- * 查询数组列表
- */
- public function select($sql)
- {
- $result = $this->mydb->query($sql);
- $data = array();
-
- while ($arr = $result->fetchArray(SQLITE3_ASSOC)) {
- $data[] = $arr;
- }
- return $data;
- }
-
- * 查询一条
- */
- public function getOneById($id, $tablename)
- {
- $sql = "SELECT * FROM `$tablename` WHERE `id`=$id;";
- $result = $this->mydb->query($sql);
-
- $data = $result->fetchArray(SQLITE3_ASSOC);
-
- return $data;
- }
-
- * 单列合计
- */
- public function sumColumn($column, $tablename)
- {
- $sql = "SELECT sum(`$column`) as sumData FROM `$tablename`;";
- $result = $this->mydb->query($sql);
-
-
- if ($data = $result->fetchArray(SQLITE3_ASSOC)) {
- return $data['sumData'];
- }
- return 0;
- }
-
- * 列表结果集
- */
- public function list($where='')
- {
- $sql = "select * from $this->tablename $where;";
- return $this->select($sql);
- }
- public function listByName($name='', $order = '', $desc = false)
- {
- $where = "";
- if ($name) {
- $where = " where name like '%$name%'";
- }
- if ($order) {
- $where .= " order by $order";
- if ($desc) {
- $where .= " desc";
- } else {
- $where .= " asc";
- }
- }
- $sql = "select * from $this->tablename $where;";
- $res = $this->select($sql);
- return $res;
- }
-
- * save
- */
- public function save($data)
- {
- $columns = "";
- $values = "";
- foreach ($data as $key => $value) {
- $columns .= "`" . $key . "`,";
- $values .= "'" . $value . "',";
- }
- $columns = rtrim($columns, ',');
- $values = rtrim($values, ',');
- $sql = "INSERT INTO `$this->tablename`(" . $columns . ") VALUES(". $values . ");";
- return $this->exec($sql);
- }
-
-
- * updateById
- */
- public function updateById($data)
- {
- $id = $data['id'];
- unset($data['id']);
- $columns = "";
- foreach ($data as $key => $value) {
- $columns .= "`" . $key . "`='" . $value ."',";
- }
- $columns = rtrim($columns, ',');
- $sql = "UPDATE `$this->tablename` SET $columns WHERE `id`=$id";
- return $this->exec($sql);
- }
-
- * deleteByIds
- */
- public function deleteById($id)
- {
- $sql = "DELETE FROM `$this->tablename` WHERE `id` IN(";
- if (is_array($id)) {
- for ($i=0; $i < count($id); $i++) {
- $sql .= $id[$i] . ',';
- }
- $sql = rtrim($sql, ',');
- $sql .= ");";
- } else {
- $sql = "DELETE FROM `$this->tablename` WHERE `id`=$id;";
- }
- return $this->exec($sql);
- }
- public function __destruct()
- {
- $this->mydb->close();
- }
- }
|