Home > Article > Backend Development > php SQLite operation class implemented based on PDO (add, delete, modify, query, transaction)
This article mainly introduces the SQLite operation class implemented by PHP based on PDO, including operation implementation techniques and usage methods such as addition, deletion, modification, query, and transactions. Friends in need can refer to the following
The examples of this article describe the PHP-based SQLite operation class implemented by PDO. Share it with everyone for your reference, the details are as follows:
Direct code:
Note: Be sure to write the database save path
<?php // sqlite分页类 class SqliteDB{ public function construct(){ // 初始化数据库,并且连接数据库 数据库配置 $this->db = new PDO('sqlite:'.dirname(FILE).'\log.db'); $this->table_name=$tab; $this->tab_init(); } public function tab_init() { # 表初始化,创建表 $this->db->exec("CREATE TABLE log( id integer PRIMARY KEY autoincrement, urls varchar(200), ip varchar(200), datetimes datetime default (datetime('now', 'localtime')) )"); } public function insert($tab_name,$key_list,$value_list) { // echo "INSERT INTO ".$tab_name." (".$key_list.") values(".$value_list.")"; $result=$this->db->exec("INSERT INTO ".$tab_name." (".$key_list.") values(".$value_list.")"); if (!$result) { return false; } // echo "{{{INSERT INTO ".$tab_name." (".$key_list.") values(".$value_list.")}}}}"; $res=$this->db->beginTransaction();//事务回gun } public function total($tab_name,$tj='')//求总记录数目 { $sth = $this->db->prepare('SELECT count(id) as c FROM '.$tab_name.' '.$tj); $sth->execute(); $result = $sth->fetchAll(); return $result[0]['c']; } public function update() { # 修改 } function delete($value='') { # 删除 } public function query($tab_name,$tj='')//表名称和条件 { $sth = $this->db->prepare('SELECT * FROM '.$tab_name.' '.$tj); // echo 'SELECT * FROM '.$tab_name.' '.$tj; $sth->execute(); $result = $sth->fetchAll(); return $result; } } // $db=new SqliteDB(); // $res=$db->insert('log','ip,urls,datetimes','"127.0.0.1","www.baidu.com","2012-12-12 00:00:00"');//添加案例 // $res=$db->query('log');//查询案例 // $res=$db->total('log');//查询案例 // print_r($res); // foreach ($res as $key => $row) { // echo $row['urls']; // } ?>
The above is the detailed content of php SQLite operation class implemented based on PDO (add, delete, modify, query, transaction). For more information, please follow other related articles on the PHP Chinese website!