操作Oracle数据库跟前边例子中操作其他数据库一样,同样是非常轻松的,略有不同的是SQL语法上的微小区别
查询
<ESql module=test id=datas><![CDATA[ Select STTP,STNM,STCD,PHCD from ST_STBPRP_B where rownum<=30 ]]></ESql>
定制显示字段名
<tr> <for end=0 [email protected]{datas:getWidth}> <th>@{datas:@{for:getSuffix}}</th> </for> </tr>
定制显示结果列表
<for objects=datas end=30> <tr> <for end=0 [email protected]{datas:getWidth}> <td>@{datas:@{datas:@{for:getSuffix}}}</td> </for> </tr> </for>
完整代码
<html> <title>Oracle数据库测试</title> <table align=center border=1> <chtml> <ESql module=test id=datas><![CDATA[ Select STTP,STNM,STCD,PHCD from ST_STBPRP_B where rownum<=30 ]]></ESql> <tr> <for end=0 [email protected]{datas:getWidth}> <th>@{datas:@{for:getSuffix}}</th> </for> </tr> <for objects=datas end=30> <tr> <for end=0 [email protected]{datas:getWidth}> <td>@{datas:@{datas:@{for:getSuffix}}}</td> </for> </tr> </for> </chtml> </table> </html>
大家可以在开发环境中装一个Oracle数据库试试效果,碰到问题可直接在后边的评论中提出。
轻开平台资源下载及说明
平台免费下载:http://download.csdn.net/detail/tx18/8381859
最新开发手册下载:http://download.csdn.net/detail/tx18/8411089 开发实例:轻开B2C电子商务网站,免费下载:http://download.csdn.net/detail/tx18/8318585 轻开平台会不定期升级为大家提供更多强大而Easy的功能,请留意最新的开发手册
时间: 2024-10-09 12:29:14