Package | Description |
---|---|
fc.jdbc |
Modifier and Type | Field and Description |
---|---|
static QueryUtil.ResultSetPrintDirection |
QueryUtil.ResultSetPrintDirection.HORIZONTAL
The result set will be printed in the typical table format
with the columns going across the page and the rows going
downwards.
|
static QueryUtil.ResultSetPrintDirection |
QueryUtil.ResultSetPrintDirection.VERTICAL
The result set will be printed with columns going downwards
and rows going across the page.
|
Modifier and Type | Method and Description |
---|---|
static void |
QueryUtil.printResultSetHTMLTable(ResultSet rs,
javax.servlet.jsp.JspWriter out,
QueryUtil.ResultSetPrintDirection direction)
Prints the given ResultSet as a HTML table to the specified JspWriter.
|
static void |
QueryUtil.printResultSetHTMLTable(ResultSet rs,
PrintWriter out,
QueryUtil.ResultSetPrintDirection direction)
Prints the given ResultSet as a HTML table to the specified PrintWriter.
|
static void |
QueryUtil.printResultSetTable(ResultSet rs,
PrintStream ps,
QueryUtil.ResultSetPrintDirection direction,
TablePrinter.PrintConfig config,
boolean headers)
Prints the specified result set in a tabular format.
|