• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

数据库输出HTML格式报表的测试

发布: 2009-6-19 11:03 | 作者: 不详 | 来源: 领测时代采编 | 查看: 47次 | 进入软件测试论坛讨论

领测软件测试网

  ********************************************************************************/
    procedure main as
    begin
        html_header('我的测试报表');
        report_header('我的标题');
        html_body('select t.owner||'';''||t.object_name||'';''||t.object_id||'';''||t.object_type||'';''||t.owner
                  from all_objects t
                  where t.owner=''DINYA''
                  and rownum<=100',5,'序号;对象名称;ID;类型','center','<b></b>'); 
        report_tail('这里是报表尾');
        html_tail;
    end;
   
    --页头,固定格式
    procedure html_header(p_title in varchar2) as
    begin
        htp.p('
            <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
            <html>
            <head>
            <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
            <title>'||nvl(trim(p_title),'无标题文档')||'</title>
            </head>
            <body>');  
    end ;
   
    --页体, 根据SQL程序和字段数,展示数据
    procedure html_body(p_sql in varchar2,p_column_count in number,p_subtitle in varchar2,p_align in varchar2,p_black in varchar2) as
        i number:=0;
        c c_sql;
        v_column varchar2(4000);
    begin
        table_h(90,1,'center');
        report_subtitle(p_column_count,p_subtitle,p_align,p_black);
        open c for p_sql;
        loop
            fetch c into v_column;            
            exit when c%notfound;
            i:=i+1;
            tr_(p_column_count,v_column,'left','');
        end loop;
        table_t;
    end ;
   
    --页尾, 固定内容
    procedure html_tail as
    begin
        htp.p('</body> </html>');
    end ;
   
   
    --------------------------------------------------------------------------------
    --表头, 表的属性
    procedure table_h(p_width in number,p_border in number,p_align in varchar2) as
    begin
        htp.p('<table width="'||p_width||'%" border="'||p_border||'" align="'||p_align||'">');
    end ;
   
    --表尾
    procedure table_t as
    begin
        htp.p('</table>');
    end ;
    --------------------------------------------------------------------------------
   
   
    --表格行
    --------------------------------------------------------------------------------
    procedure tr_(p_col_count in number,p_column in varchar2,p_align in varchar2,p_black in varchar2) as
    begin
        htp.p('<tr>');
        td_(p_col_count,p_column,p_align,p_black);
        htp.p('</tr>');
    end;
    procedure tr_h as
    begin
        htp.p('<tr>');
    end ;
    procedure tr_t as
    begin
       htp.p('</tr>');
    end ;
    -------------------------------------------------------------------------------
   
   
   
    --表单元格
   

延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/

32/3<123>

关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网