Commit Graph

3882 Commits

Author SHA1 Message Date
thinkphp
bb3cfae0a6 添加default_url_root参数设置默认URL根地址 2017-05-22 12:39:46 +08:00
fangrenfu
37ff5677dc 修正join其他表时生成的delete语句错误。
Db::table('a')->join('b','a.map=b.id')
            ->where('b.id=1')->delete();
生成的语句是
delete from a inner join b on a.map=b.id where b.id=1 //这在mssql中存在语法错误!
正确的语句应该是delete from a  from a inner join b on a.map=b.id where b.id=1 
希望采纳!
2017-05-20 22:50:04 -05:00
liuyaya
91bc1761b4 注释优化 2017-05-20 11:16:47 -05:00
thinkphp
7deea9dd07 改进Query类 2017-05-20 23:22:23 +08:00
thinkphp
24ae4b9042 版本更新 v5.0.9 2017-05-20 18:43:04 +08:00
thinkphp
a45586ad02 改进模型类的save方法 2017-05-20 14:47:42 +08:00
thinkphp
53a819ff5b 改进save方法 2017-05-19 23:32:33 +08:00
thinkphp
c14988ee84 改进事务的断线重连 2017-05-19 11:27:23 +08:00
thinkphp
23883590c4 模型的数据不受allowfield影响 2017-05-18 16:21:13 +08:00
thinkphp
993cda07a6 改进Collection类的column方法 2017-05-18 14:26:08 +08:00
thinkphp
8cc44f8bf6 改进 2017-05-18 13:59:55 +08:00
thinkphp
1bdd33277c 改进断线的异常判断 2017-05-18 10:34:14 +08:00
thinkphp
faffdee907 改进Request的type方法对image类型的判断 统一返回image 2017-05-16 19:10:06 +08:00
thinkphp
20216368c4 改进数据库驱动 2017-05-16 13:54:26 +08:00
thinkphp
2ee83fff81 Revert "Query类分页查询方法增加total_cache参数配置"
This reverts commit 6a550b8cb8.
2017-05-15 16:55:15 +08:00
thinkphp
6a550b8cb8 Query类分页查询方法增加total_cache参数配置 2017-05-15 16:45:20 +08:00
thinkphp
13a5a3d9b6 改进模型的appendRelationAttr方法 2017-05-14 13:46:02 +08:00
thinkphp
629a194211 改进模型类的destroy方法 传入空数组和null的时候不进行任何删除操作 2017-05-14 12:05:45 +08:00
thinkphp
96f45258cd 改进关联属性的输出 2017-05-14 11:27:41 +08:00
thinkphp
e3665caeeb 修正关联自动写入 2017-05-13 12:15:05 +08:00
thinkphp
17479a6eda 改进命令行的日志切割生成 2017-05-12 15:57:04 +08:00
thinkphp
c78b8deea5 修正 2017-05-12 15:24:37 +08:00
thinkphp
ea83a28d7e 改进分页类的toarray方法 增加总页数 2017-05-12 11:50:48 +08:00
thinkphp
e13c825aa7 比较运算支持使用闭包子查询 2017-05-12 11:03:36 +08:00
thinkphp
c0e666819f 改进Response类 支持手动设置contentType 2017-05-12 10:42:59 +08:00
ThinkCMF
4d594b9336 修复 url 生成时路由规则中的参数没有进行 urlencode 2017-05-12 10:34:35 +08:00
thinkphp
e45d791423 优化db助手函数 2017-05-11 18:55:47 +08:00
thinkphp
ffe7668184 修正单元测试 2017-05-11 18:49:30 +08:00
thinkphp
6e721239ea 改进数据库类的一处不能嵌套查询的缺陷 2017-05-11 18:39:06 +08:00
thinkphp
7576b88c99 修正模型数据变化判断 2017-05-11 14:53:43 +08:00
thinkphp
06f603d737 Merge branch 'master' of https://git.topthink.com/topteam/framework 2017-05-11 14:23:54 +08:00
thinkphp
c0763644f3 修正Query类的useSoftDelete方法返回值 2017-05-11 14:23:09 +08:00
thinkphp
2525774483 Merge branch 'master' of https://git.topthink.com/topteam/framework 2017-05-09 15:39:46 +08:00
thinkphp
513f1f32f7 改进belongstomany的查询字段指定 2017-05-09 15:38:41 +08:00
thinkphp
a9d5851672 修正一对一嵌套关联数组定义的问题 2017-05-08 23:03:39 +08:00
thinkphp
df1b306819 分页类增加each方法 2017-05-06 10:56:24 +08:00
thinkphp
3dda16bbda 改进使用了手动参数绑定的时候 缓存出现问题的情况 2017-05-06 09:35:43 +08:00
thinkphp
bf1ebe8ae1 修正路由分组的路由规则大小写识别问题 2017-05-05 17:40:58 +08:00
thinkphp
fc432d5f5d 修正Model类的save方法 2017-05-05 17:01:14 +08:00
thinkphp
aa0198a47c 修正异常模板 2017-05-03 18:13:38 +08:00
thinkphp
7dc2a9d975 改进isBreak方法判断 2017-05-03 15:37:35 +08:00
thinkphp
2c60d4a13b 改进mysql重连判断 2017-05-03 15:23:45 +08:00
thinkphp
f1b3ab5a3d 改进Request类的filter过滤机制 支持正则 2017-05-03 11:22:08 +08:00
thinkphp
68790e8d9a 改进输入过滤 2017-04-30 22:58:49 +08:00
thinkphp
f3aa05f808 改进Request类filterValue方法 2017-04-30 21:45:09 +08:00
thinkphp
02f8e8a909 应用类库自定义命名空间采用APP_NAMESPACE常量订阅 v5.0.8 2017-04-28 17:33:15 +08:00
thinkphp
e2ea42926a 修正类库命名空间自定义的问题 2017-04-28 17:27:02 +08:00
thinkphp
a753c7c436 Merge branch 'master' of https://github.com/top-think/framework 2017-04-28 17:09:42 +08:00
thinkphp
5cfeca1017 改进类库命名空间定义 2017-04-28 17:09:03 +08:00
thinkphp
51adc8254d 版本更新 2017-04-28 09:14:37 +08:00