Change data source dynamically while updating web input report

  • In web-based input report, users sometimes need to change data source dynamically. For example, in a web report, inputted data often need to be saved to different databases according to end users' different options.

    As a professional Web-based Java reporting tool, RAQ Report [/url]provides a wonderful solution to change data source dynamically while updating web report. With RAQ Report, users only need to call RAQ Report API. Then, data sources will be dynamically changed when it's runing.

    ReportDefine rd = (ReportDefine)ReportUtils.read(raq);

    INormalCell cell = rd.getCell(2, (short)1);

    InputProperty ip = cell.getInputProperty();

    ArrayList al = ip.getUpdateList();

    UpdateProperty up = (UpdateProperty)al.get(0);

    // Get the corresponding relation

    Object relations = up.getRelation();

    if(relations instanceof com.runqian.report4.usermodel.input.TableRelations){

    TableRelations trs = (TableRelations)relations;

    System.out.println(trs.getDataSourceName());

    trs.setDataSourceName(“northwind”);

    up.setRelation(trs);

    ArrayList ups = new ArrayList(1);

    ups.add(up);

    ip.setUpdateList(ups);

    cell.setInputProperty(ip);

    This post is from freezea's blog[/url]. You are welcomed cc it anywhere, and please indicate the source.

    If you would like to read more articles about reporting tool, you are also welcome to refer to his blog.

    Welcome to my blog[/url].:P

Viewing 0 posts

You must be logged in to reply to this topic. Login to reply