jDbSync jDBSync
Core Tasks

SourceForge.net Logo
Core Tasks
Export
Compare
CreateSql
Auxiliary Tasks
Table
Field
Sql
 
Diagrams
Main Tasks
Activites
 
 
Report

To create HTML report you should have the XML file with a comparison's result. This XML file is a result of Compare task. You should use a special XSL stylesheet file convert2html.xsl to do XSL Transformation. It is possible to use as any XML tools (like Exchanger XML Editor) as well ANT style task.

If you are going to use ANT <style> task you should download XSL stylesheet in your local filesystem: XLT Stylesheet source

Example of ANT style usage.

<taskdef name="compare" classname="org.chur.ant.db.jdbsynch.compare.CompareTask"/>
<compare
	pattern="ideal.xml" compareTo="wrong.xml" out="suspicious.xml"/>

<style in="suspicious.xml" out="suspicious.html"
       style="convert2html.xsl"/>

									

To see the sample of HTML transformation click here.