亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? sql.tld

?? JSP工程應用與實踐
?? TLD
字號:
<?xml version="1.0" encoding="UTF-8" ?>

<taglib xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee web-jsptaglibrary_2_0.xsd"
    version="2.0">
    
  <description>JSTL 1.1 sql library</description>
  <display-name>JSTL sql</display-name>
  <tlib-version>1.1</tlib-version>
  <short-name>sql</short-name>
  <uri>http://java.sun.com/jsp/jstl/sql</uri>

  <validator>
    <description>
        Provides core validation features for JSTL tags.
    </description>
    <validator-class>
        org.apache.taglibs.standard.tlv.JstlSqlTLV
    </validator-class>
  </validator>

  <tag>
    <description>
        Provides nested database action elements with a shared Connection,
        set up to execute all statements as one transaction.
    </description>
    <name>transaction</name>
    <tag-class>org.apache.taglibs.standard.tag.rt.sql.TransactionTag</tag-class>
    <body-content>JSP</body-content>
    <attribute>
        <description>
DataSource associated with the database to access. A
String value represents a relative path to a JNDI
resource or the parameters for the JDBC
DriverManager facility.
        </description>
        <name>dataSource</name>
        <required>false</required>
        <rtexprvalue>true</rtexprvalue>
    </attribute>
    <attribute>
        <description>
Transaction isolation level. If not specified, it is the
isolation level the DataSource has been configured
with.
        </description>
        <name>isolation</name>
        <required>false</required>
        <rtexprvalue>true</rtexprvalue>
    </attribute>
  </tag>

  <tag>
    <description>
        Executes the SQL query defined in its body or through the
        sql attribute.
    </description>
    <name>query</name>
    <tag-class>org.apache.taglibs.standard.tag.rt.sql.QueryTag</tag-class>
    <body-content>JSP</body-content>
    <attribute>
        <description>
Name of the exported scoped variable for the
query result. The type of the scoped variable is
javax.servlet.jsp.jstl.sql.
Result (see Chapter 16 "Java APIs").
        </description>
        <name>var</name>
        <required>true</required>
        <rtexprvalue>false</rtexprvalue>
    </attribute>
    <attribute>
        <description>
Scope of var.
        </description>
        <name>scope</name>
        <required>false</required>
        <rtexprvalue>false</rtexprvalue>
    </attribute>
    <attribute>
        <description>
SQL query statement.
        </description>
        <name>sql</name>
        <required>false</required>
        <rtexprvalue>true</rtexprvalue>
    </attribute>
    <attribute>
        <description>
Data source associated with the database to
query. A String value represents a relative path
to a JNDI resource or the parameters for the
DriverManager class.
        </description>
        <name>dataSource</name>
        <required>false</required>
        <rtexprvalue>true</rtexprvalue>
    </attribute>
    <attribute>
        <description>
The returned Result object includes the rows
starting at the specified index. The first row of
the original query result set is at index 0. If not
specified, rows are included starting from the
first row at index 0.
        </description>
        <name>startRow</name>
        <required>false</required>
        <rtexprvalue>true</rtexprvalue>
    </attribute>
    <attribute>
        <description>
The maximum number of rows to be included in
the query result. If not specified, or set to -1, no
limit on the maximum number of rows is
enforced.
        </description>
        <name>maxRows</name>
        <required>false</required>
        <rtexprvalue>true</rtexprvalue>
    </attribute>
  </tag>

  <tag>
    <description>
        Executes the SQL update defined in its body or through the
        sql attribute.
    </description>
    <name>update</name>
    <tag-class>org.apache.taglibs.standard.tag.rt.sql.UpdateTag</tag-class>
    <body-content>JSP</body-content>
    <attribute>
        <description>
Name of the exported scoped variable for the result
of the database update. The type of the scoped
variable is java.lang.Integer.
        </description>
        <name>var</name>
        <required>false</required>
        <rtexprvalue>false</rtexprvalue>
    </attribute>
    <attribute>
        <description>
Scope of var.
        </description>
        <name>scope</name>
        <required>false</required>
        <rtexprvalue>false</rtexprvalue>
    </attribute>
    <attribute>
        <description>
SQL update statement.
        </description>
        <name>sql</name>
        <required>false</required>
        <rtexprvalue>true</rtexprvalue>
    </attribute>
    <attribute>
        <description>
Data source associated with the database to update.
A String value represents a relative path to a JNDI
resource or the parameters for the JDBC
DriverManager class.
        </description>
        <name>dataSource</name>
        <required>false</required>
        <rtexprvalue>true</rtexprvalue>
    </attribute>
  </tag>

  <tag>
    <description>
        Sets a parameter in an SQL statement to the specified value.
    </description>
    <name>param</name>
    <tag-class>org.apache.taglibs.standard.tag.rt.sql.ParamTag</tag-class>
    <body-content>JSP</body-content>
    <attribute>
        <description>
Parameter value.
        </description>
        <name>value</name>
        <required>false</required>
        <rtexprvalue>true</rtexprvalue>
    </attribute>
  </tag>

  <tag>
    <description>
        Sets a parameter in an SQL statement to the specified java.util.Date value.
    </description>
    <name>dateParam</name>
    <tag-class>org.apache.taglibs.standard.tag.rt.sql.DateParamTag</tag-class>
    <body-content>empty</body-content>
    <attribute>
        <description>
Parameter value for DATE, TIME, or
TIMESTAMP column in a database table.
        </description>
        <name>value</name>
        <required>true</required>
        <rtexprvalue>true</rtexprvalue>
    </attribute>
    <attribute>
        <description>
One of "date", "time" or "timestamp".
        </description>
        <name>type</name>
        <required>false</required>
        <rtexprvalue>true</rtexprvalue>
    </attribute>
  </tag>

  <tag>
    <description>
        Creates a simple DataSource suitable only for prototyping.
    </description>
    <name>setDataSource</name>
    <tag-class>org.apache.taglibs.standard.tag.rt.sql.SetDataSourceTag</tag-class>
    <body-content>empty</body-content>
    <attribute>
        <description>
Name of the exported scoped variable
for the data source specified. Type can
be String or DataSource.
        </description>
        <name>var</name>
        <required>false</required>
        <rtexprvalue>false</rtexprvalue>
    </attribute>
    <attribute>
        <description>
If var is specified, scope of the
exported variable. Otherwise, scope of
the data source configuration variable.
        </description>
        <name>scope</name>
        <required>false</required>
        <rtexprvalue>false</rtexprvalue>
    </attribute>
    <attribute>
        <description>
Data source. If specified as a string, it
can either be a relative path to a JNDI
resource, or a JDBC parameters string
as defined in Section 10.1.1.
        </description>
        <name>dataSource</name>
        <required>false</required>
        <rtexprvalue>true</rtexprvalue>
    </attribute>
    <attribute>
        <description>
JDBC parameter: driver class name.
        </description>
        <name>driver</name>
        <required>false</required>
        <rtexprvalue>true</rtexprvalue>
    </attribute>
    <attribute>
        <description>
JDBC parameter: URL associated with
the database.
        </description>
        <name>url</name>
        <required>false</required>
        <rtexprvalue>true</rtexprvalue>
    </attribute>
    <attribute>
        <description>
JDBC parameter: database user on
whose behalf the connection to the
database is being made.
        </description>
        <name>user</name>
        <required>false</required>
        <rtexprvalue>true</rtexprvalue>
    </attribute>
    <attribute>
        <description>
JDBC parameter: user password
        </description>
        <name>password</name>
        <required>false</required>
        <rtexprvalue>true</rtexprvalue>
    </attribute>
  </tag>
</taglib>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
综合在线观看色| 黄色日韩网站视频| 久久se精品一区二区| 成人午夜av电影| 91精品黄色片免费大全| 亚洲图片另类小说| 国产成人在线色| 日韩欧美国产一区二区在线播放| 亚洲欧美中日韩| 国产一区二区三区av电影 | 亚洲www啪成人一区二区麻豆| 九九九久久久精品| 欧美视频在线一区| 亚洲免费av在线| 国产91丝袜在线播放0| 欧美一区二区三区视频免费播放| 亚洲欧洲av色图| 国产sm精品调教视频网站| 日韩一级片在线播放| 午夜亚洲福利老司机| 99久久久国产精品| 国产精品素人一区二区| 精品亚洲国产成人av制服丝袜| 欧美日韩国产首页在线观看| 亚洲私人影院在线观看| 9i看片成人免费高清| 国产精品久久久一本精品| 国产一区在线视频| 精品国产99国产精品| 久久精品国产久精国产爱| 日韩一区二区三区免费观看| 日本伊人精品一区二区三区观看方式 | 岛国精品一区二区| 久久亚洲精华国产精华液| 全国精品久久少妇| 3751色影院一区二区三区| 午夜电影网亚洲视频| 在线91免费看| 美女被吸乳得到大胸91| 日韩一区二区免费在线电影| 轻轻草成人在线| 精品毛片乱码1区2区3区| 国产老妇另类xxxxx| 久久久久高清精品| 不卡的av在线播放| 一区二区三区在线不卡| 欧美做爰猛烈大尺度电影无法无天| 亚洲欧美日韩精品久久久久| 欧美色精品在线视频| 日韩精品高清不卡| 久久综合一区二区| 99久久综合国产精品| 亚洲综合色视频| 欧美一区二区福利视频| 国产一区二区不卡老阿姨| 亚洲国产精品av| 在线欧美日韩精品| 免费在线观看一区| 国产喷白浆一区二区三区| 色综合久久综合中文综合网| 五月婷婷综合激情| 国产欧美日韩亚州综合| 91在线一区二区三区| 首页国产欧美久久| 国产片一区二区| 欧美日韩一级黄| 国产专区欧美精品| 中文字幕佐山爱一区二区免费| 欧美日高清视频| 国产电影一区在线| 亚洲动漫第一页| 欧美国产精品久久| 欧美精品久久一区| 成人性生交大片免费看在线播放| 一区二区三区欧美久久| 久久综合成人精品亚洲另类欧美 | 久久日韩粉嫩一区二区三区| 色域天天综合网| 久久爱www久久做| 夜夜嗨av一区二区三区| 久久婷婷久久一区二区三区| 欧洲激情一区二区| 国产成人精品一区二区三区四区 | 亚洲h动漫在线| 国产欧美一区二区三区网站| 欧美私人免费视频| 9i在线看片成人免费| 国内一区二区在线| 午夜国产不卡在线观看视频| 亚洲视频一区二区在线| 久久蜜桃一区二区| 欧美一区二区三区白人| 日本韩国一区二区| 成a人片国产精品| 韩国三级中文字幕hd久久精品| 亚洲国产中文字幕| 亚洲免费观看高清完整版在线观看 | 99久久精品国产观看| 国产在线精品视频| 蜜桃一区二区三区在线观看| 亚洲综合色网站| 亚洲精品国产一区二区精华液 | 亚洲欧美综合在线精品| 久久久久久久久蜜桃| 日韩午夜av一区| 日韩欧美国产三级| 日韩欧美一二三四区| 91精品国产福利在线观看 | 欧美一级欧美一级在线播放| 色婷婷综合久久久久中文一区二区| 国产成人精品亚洲777人妖 | 亚洲高清三级视频| 亚洲一二三四久久| 一区二区三区四区蜜桃| 亚洲免费av观看| 亚洲美女免费在线| 亚洲精品高清在线| 一区二区国产盗摄色噜噜| 亚洲综合视频在线观看| 一区二区视频免费在线观看| 亚洲天堂精品在线观看| 亚洲欧美另类小说视频| 日韩毛片一二三区| 亚洲人成亚洲人成在线观看图片| 亚洲人成在线播放网站岛国| 一区二区在线看| 亚洲福利视频一区| 水野朝阳av一区二区三区| 日本不卡高清视频| 国产永久精品大片wwwapp| 成人一区二区三区视频| 91在线视频播放地址| 欧美日韩国产高清一区二区 | 久久综合给合久久狠狠狠97色69| 欧美精品一区二区在线观看| 国产亚洲欧美在线| 日韩理论电影院| 亚洲1区2区3区4区| 久久激情综合网| 高清久久久久久| 色猫猫国产区一区二在线视频| 欧美三级日韩在线| 久久综合色播五月| 亚洲摸摸操操av| 日韩电影在线看| 国产成人8x视频一区二区| 色成人在线视频| 欧美成人猛片aaaaaaa| 国产欧美日韩在线| 午夜国产不卡在线观看视频| 国产一区二区三区四区在线观看| 不卡一区二区在线| 日韩欧美www| 亚洲欧美aⅴ...| 久久精品国产成人一区二区三区| 成人av网站在线观看免费| 欧美日韩高清不卡| 国产精品高清亚洲| 精油按摩中文字幕久久| 在线影院国内精品| 久久久久久久网| 天天av天天翘天天综合网| 国产激情91久久精品导航| 5566中文字幕一区二区电影| 国产精品成人一区二区三区夜夜夜| 五月天久久比比资源色| 岛国av在线一区| 日韩视频不卡中文| 亚洲综合精品久久| 成人av综合在线| 精品盗摄一区二区三区| 亚洲一区二区三区中文字幕| 国产白丝精品91爽爽久久| 日韩美女视频一区二区在线观看| 亚洲欧美日韩在线不卡| 国产成人午夜高潮毛片| 欧美大片一区二区三区| 亚洲一区二区三区在线看| 99久久精品国产观看| 国产欧美日韩综合| 国产一区二区女| 日韩免费观看高清完整版 | 精品一区二区三区影院在线午夜 | www.成人在线| 久久精品夜夜夜夜久久| 久久91精品国产91久久小草| 欧美挠脚心视频网站| 亚洲男帅同性gay1069| 成人av网站在线| 亚洲国产成人自拍| 国产精品一区二区在线播放| 欧美成人一区二区三区在线观看| 午夜久久久影院| 欧美精品久久一区二区三区| 亚洲一区二区精品久久av| 91免费观看视频在线| 亚洲四区在线观看| 97久久久精品综合88久久| 亚洲欧洲另类国产综合| av动漫一区二区|