niudaxianren

做项目遇到的问题集锦

7.11
条件查询时,如果有时间条件必须统一一下日期语言。
例:to_char(a.create_Date,\'yyyy-MM-dd\') =to_char(#{createDate},\'yyyy-MM-dd\')
7.24
svn检出的项目报classNotFount异常时;
在项目的proprites选项中,将java Compiler中的building的Abort build when error 的勾去掉,然后重新启动 Tomcat即可
7.26
查看本机IP地址:在cmd界面中输入ipconfig/all回车就可以看到了
7.30
CKfinder上传图片缩略图问题
项目里CKFinder要求上传的图片大小不缩略
CKfinder.xml配置中的<imgWidth>16000</imgWidth><imgHeight>12000</imgHeight>里面的数值调大些就可以了
9.6
jbox关闭子页面刷新父页面
window.parent.frames[i].location.href="${ctx}/workorder/works/index";
i就是代表第几个iframe;

11.15
修改某个表中字段的类型sql
alter table m_rel_userhouse rename column userid to useridold;

alter table m_rel_userhouse add (userid varchar2(64));

update m_rel_userhouse set userid = useridold;

alter table m_rel_userhouse drop column useridold;

发表于 2018-11-20 14:14  牛大闲人  阅读(438)  评论(0编辑  收藏  举报
 

分类:

技术点:

相关文章:

  • 2022-02-09
  • 2021-04-04
  • 2021-06-30
  • 2021-09-28
  • 2022-01-01
  • 2022-01-01
  • 2021-05-15
猜你喜欢
  • 2022-01-23
  • 2021-12-24
  • 2021-11-26
  • 2021-10-02
  • 2022-03-11
  • 2021-09-26
  • 2022-12-23
相关资源
相似解决方案