Execute query and print ResultSet to an OutputStream.
Rows are directly fetched from database and printed to OutputStream one by one.
@param oConn Database Connection @param sColumnList Columns to SELECT @param sFilter Full SQL filter clause, including <> @param oOutStrm OutputStream for printing results. @param sShowAs Output TypeTSV | Tab separated values | Columns are delimited by tabs and rows are delimited by line feeds |
XLS | Excel Default | Columns are delimited by ';' and rows are delimited by line feeds |
CSV | Comma separated values | Columns are delimited by ',' and rows are delimited by line feeds, text is qualified with double quoutes. |
|
|
|
|