Commit Graph

133 Commits

Author SHA1 Message Date
F4nniu
e0f46fc691 修复 implode 函数使用,调换参数,旧的方式在 7.4 后将废除,感谢 @chinayin 的反馈。 2022-04-03 19:05:22 +08:00
Karson
2e205c8a75 修复关联查询时whereTime找不到关联表前缀的BUG
Signed-off-by: Karson <karsonzhang@163.com>
2021-03-18 11:21:22 +08:00
thinkphp
8652c83ea1 改进聚合查询的安全性 2018-10-18 18:37:53 +08:00
thinkphp
29c6111748 Merge branch 'master' of https://github.com/top-think/framework 2018-08-23 17:10:37 +08:00
thinkphp
79a096b877 修正parseComment方法 2018-08-21 12:04:07 +08:00
thinkphp
574451ffaf 修正whereRaw方法 2018-08-18 22:56:43 +08:00
thinkphp
c2161cfa08 修正 2018-05-23 18:57:28 +08:00
thinkphp
151052cd3f 调整 2018-05-07 22:33:19 +08:00
thinkphp
ac0a9721ef 改进查询 2018-05-07 22:29:32 +08:00
thinkphp
f75fd2ed27 改进 2018-05-03 17:41:42 +08:00
thinkphp
fa413f48e0 调整 2018-05-03 17:20:41 +08:00
thinkphp
a5afa55ce6 使用exp表达式更新数据的异常提示 2018-05-03 17:19:53 +08:00
thinkphp
48054a6abb jion方法的条件支持传入Expression对象 2018-04-27 12:16:43 +08:00
thinkphp
37b2d1689d 改进comment方法解析 2018-04-20 16:05:51 +08:00
thinkphp
e3a4faedbf 修正一处未定义变量错误 2018-04-17 19:29:53 +08:00
thinkphp
f34e91deb2 exp表达式查询改进 2018-04-14 12:43:52 +08:00
thinkphp
111353f066 修正inc/dec方法 2018-04-14 12:09:27 +08:00
thinkphp
137ccfc458 改进insertAll方法 2018-04-14 10:12:25 +08:00
thinkphp
94384d1aba 改进parseTime方法 2018-04-13 16:32:33 +08:00
thinkphp
9eb57bf3bc 改进 2018-04-13 14:39:18 +08:00
thinkphp
ae442796eb 改进 2018-04-12 16:31:54 +08:00
thinkphp
01acff377e order方法调整 2018-04-12 11:38:49 +08:00
thinkphp
8ae0fdef46 增加Expression类及相关方法 2018-04-12 09:25:46 +08:00
thinkphp
091e7b734d 改进inc/dec查询 2018-03-27 15:55:37 +08:00
thinkphp
363fd4d903 改进inc和dec查询 2018-03-26 14:17:25 +08:00
thinkphp
9daace8812 改进参数绑定 2018-03-20 15:13:21 +08:00
thinkphp
34875308ae 改进join自关联查询 2018-01-28 22:44:25 +08:00
thinkphp
382d9d0198 改进union查询 2018-01-15 17:35:08 +08:00
thinkphp
282d04e4af 更新说明 2018-01-01 20:19:18 +08:00
thinkphp
b698ab8809 改进insertall方法 2017-12-27 15:39:42 +08:00
thinkphp
713f54f561 改进 2017-12-25 17:30:09 +08:00
thinkphp
80fe2515e6 改进Builder类parseData对空数组的判断 2017-12-23 10:58:56 +08:00
thinkphp
3728859d9a 更新 2017-12-20 14:23:50 +08:00
thinkphp
f8fa4b1639 改进union查询 2017-12-20 14:21:43 +08:00
thinkphp
6356cacefd 修正Query类的inc和dec方法的关键词问题 2017-12-11 21:53:27 +08:00
thinkphp
4882617edb 改进Query类group方法的解析 2017-09-07 11:45:04 +08:00
thinkphp
4ef35fa4bb Query类lock方法支持传入字符串 2017-09-05 17:36:15 +08:00
thinkphp
e05d6aecd6 改进Builder类的parseData方法 2017-08-30 14:14:43 +08:00
thinkphp
2a07b7dbb8 改进数组查询条件中的null查询 2017-08-10 10:34:23 +08:00
yinggaozhen
7c9b2079e8 修改Builder若干处注释错误,错别字,以及修复一处因方法不存在可能导致异常的错误 2017-08-03 11:29:14 +08:00
thinkphp
372111c3a9 修正对象的条件查询 2017-08-02 18:11:55 +08:00
thinkphp
52e33ddbc7 数据库驱动改进 2017-07-12 15:21:37 +08:00
thinkphp
6e94f2eae7 修正数据库查询一处问题 改进数据库异常避免暴露敏感信息 2017-07-04 09:08:52 +08:00
uuling
bbdd88b2c4 修复 传入数组批量设置数据表以及别名 bug
Db::table('think_user')->alias(['think_user'=>'user','think_dept'=>'dept'])->join('think_dept','dept.user_id= user.id')->select();
生成的SQL为 
SELECT * FROM think_user user INNER JOIN think_dept think_dept ON dept.user_id= user.id
修改后生成的SQL为 
SELECT * FROM think_user user INNER JOIN think_dept dept ON dept.user_id= user.id
2017-07-01 22:37:07 +08:00
thinkphp
e40a795b43 修正whereNotLike方法 2017-06-25 10:41:51 +08:00
thinkphp
1bb78d11b7 改进in查询的去重问题 2017-05-27 22:41:39 +08:00
thinkphp
253f2bfc7b insertall支持replace 2017-05-21 00:35:25 +08:00
thinkphp
7deea9dd07 改进Query类 2017-05-20 23:22:23 +08:00
thinkphp
e13c825aa7 比较运算支持使用闭包子查询 2017-05-12 11:03:36 +08:00
thinkphp
00fd0b5e20 改进软删除条件在使用闭包查询情况下多次生成的问题 2017-03-22 16:38:51 +08:00