Home > Backend Development > PHP Tutorial > thinkphp 怎么在Model里面写传统的SQL语句

thinkphp 怎么在Model里面写传统的SQL语句

WBOY
Release: 2016-06-13 11:13:05
Original
1566 people have browsed it

thinkphp 如何在Model里面写传统的SQL语句?
比如我想写
$insertsql = "INSERT INTO wordtest(english,chinese,addedtime,user_id,phptime) VALUES('".$singleword."','".$collectchinese."',NOW(),'".$userid."','".$phptime."')";//==通过查到的用户id,加入到单词表word里面的user_id字段里面;
$sqlobj->query($insertsql);
而我又不希望用D();或者M()方法,直接在Model里写个类。
请问可以操作吗?具体如何操作?


------解决方案--------------------
使用框架也是要付出一定的代价的

虽然目前框架中的 ORM 模式很低效,但并不说明以后就不会变成真正的 ORM
当然,目前的框架中的 ORM 还是拼装成 SQL 串后执行的

所以框架也提供了 ActiveRecord 模式,供你直接使用 SQL 指令串
$Model = new Model() // 实例化一个model对象 没有对应任何数据表
$Model->query("select * from think_user where status=1");
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template