预览模式: 普通 | 列表
08-09
17

You can't specify target table for update in FROM

You can't specify target table for update in FROM clause

mysql> Update EACONTACTGROUPS A
SET GROUPNAME=(Select CONCAT(B.GROUPNAME,'-',A.GROUPNAME) FROM EACONTACTGROUPS B Where B.CORPID=A.CORPID AND B.USERID=A.USERID AND B.GROUPID=A.PARENTGROUPID)
Where A.PARENTGROUPID IS NOT NULL;
ERROR 1093 (HY000): You can't specify target table 'A' for update in FROM clause
上面是目前MYSQL5.0仍然有的限制,文档中说:
In general, you cannot modify a table and select from the same table in a subquery. For example, this limitation applies to statements of the following forms:

查看更多...

分类:Database | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 1093
08-09
12

JSP referer的用处

request.getHeader("Referer")得到上一次的Url,用途之一,可以作为防盗链
能得到你是从什么页面过来的,referer的用处

在开发web程序的时候,有时我们需要得到用户是从什么页面连过来的,这就用到了referer。

它是http协议,所以任何能开发web程序的语言都可以实现,比如jsp(SUN企业级应用的首选)中是:

request.getHeader("referer");

查看更多...

Tags: referer 防盗链

分类:学习 | 固定链接 | 评论: 1 | 引用: 0 | 查看次数: 1049
08-09
12

web.xml配置Session超时时间注意的单位问题

为单个Web应用 配置超时时间可以在web.xml中使用<session-config>元素,如



....
<web-app>

<!--filter.listener,servlet,and servlet-mapping等元素要在session-config之前-->
    <session-config>

查看更多...

Tags: TOMCAT

分类:学习 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 2548
08-09
12

Tomcat中web.xml文件的详细说明

Tomcat中web.xml文件的详细说明
<?xml version="1.0" encoding="GB2312"?> <!--
Web.xml依次定议了如下元素:
<web-app>
<display-name></display-name> 定义了WEB应用的名字
<description></description> 声明WEB应用的描述信息
<filter></filter>
<filter-mapping></filter-mapping>
<servlet></servlet>

查看更多...

Tags: TOMCAT

分类:学习 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 649
08-09
11

我不是谁的救赎者

     经过了一段很长很长的时间,我发现自己心力交瘁。我开始不停的反思当初的过错,那些忧伤之极的梦一遍又一遍不停的折磨着我。每每想起都觉得曾经的那段时间里,我无论如何没有尽到对她的半点责任。当初口口声声的说是为她,完全是自私狭隘的结果。到头来自着自受,快三年的时间,我再次回到花溪深处,看当时的照片,点点滴滴。我紧紧的抓住这点点回忆,不肯放手。

查看更多...

Tags: 救赎

分类:生活 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 615
08-09
10

Cannot create iterator for this collection

at org.apache.struts.taglib.logic.IterateTag.doStartTag(IterateTag.java:265)
jsp文件如下:
<logic:notEmpty name="graduateList" >
<logic:iterate id="graduate" name="graduateList" >
</ogic:notEmpty >
</ogic:iterat>

graduateList是一个类,而logic:iterator要求必须是ArrayList,HashSet....这样的集合类,而graduateList中一个属性是ArrayList或HashSet的
应改为:
<logic:notEmpty name="graduateList" property="items">

查看更多...

分类:Struts | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 1554