Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/sonoma/database/testReport.java


1   /*
2    * testReport.java
3    *
4    * Created on January 19, 2002, 5:52 PM
5    */
6   
7   package com.sonoma.database;
8   
9   /**
10   *
11   * @author  Administrator
12   * @version 
13   */
14  public class testReport extends Object {
15  
16      /** Creates new testReport */
17      public testReport() {
18      }
19      public static void main(String[] args){
20       HTMLReport hr = new HTMLReport();
21       System.out.println(hr.getReportHTML("","SELECT * FROM Everything where entry like 'abb%'","org.gjt.mm.mysql.Driver"));
22      }
23  }