/** * 使用自己编写的Model进行数据库访问Action * * 访问URL:http://localhost/?c=index&a=db2 * http://localhost/index/db2 * * @return void */ public function db2Action() { try { //实例化自己编写的Model $model = new IndexModel($this); //建立一个数据表 $model->createTable(); //插入一条记录 $model->addUser('heiyeluren', '*****@*****.**'); //更新记录 $model->modifyUser('heiyeluren', 'test'); //统计记录数 $total = $model->countUser(); //读取所有记录 $list = $model->getUserList(); //设置展现模板数据 $this->title = "数据库访问展现页"; $this->total = $total; $this->list = $list; //设置模板进行展现 $this->render('db.php'); } catch (TM_Exception $e) { echo "db action error: " . $e->getMessage(); } }