delete.tag

来自「某石油系统正在使用的实时报表平台系统」· TAG 代码 · 共 15 行

TAG
15
字号
<%@ tag body-content="empty" %>
<%@ attribute name="table" required="true" %>
<%@ attribute name="where" required="false" %>
<%@ include file="init.tagf" %>

<c:catch var="errormsg">
<sql:update dataSource="${tags_tour_dataSource}">
DELETE FROM ${table}
<c:if test="${!empty where}"> WHERE ${where} </c:if>
</sql:update>
</c:catch>

<c:if test="${!empty errormsg}">
<pre><c:out value="${errormsg}" /></pre>
</c:if>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?