1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
.TH hk_exportcsv "1" "hk_classes package" "" "http://hk-classes.sourceforge.net"
.SH NAME
hk_exportcsv \- exports the result set of a query or a table into a comma separated list (CSV).
hk_exportcsv is part of the hk_classes package
.SH SYNOPSIS
.B hk_exportcsv -d driver -b database [OPTIONS] datasourcename
.SH DESCRIPTION
.B hk_exportcsv
exports the result set of a query or a table into a comma separated list (CSV).
The data will be printed to stdout.
To create a table or a query use
.B knoda (http://www.knoda.org).
If the datasource is not a table set the
.BR --query
option.
.SH OPTIONS
.IP "-b, --database=DATABASE"
database name
.IP "--between=BETWEEN"
column separator, default is ','
.IP "-d, --driver=DRIVERNAME"
set the SQL-driver (e.g. mysql). You can get a list of all existing SQL-drivers with
.BR -l
or
.BR --list
.IP "--delimiter=TEXTDELIMITER"
the text delimiter, default is '"'
.IP "--df=dateformat"
date format, may contain M D Y, example: D.M.Y
.IP "--tf=timeformat"
time format, may contain h m s , example: h:m:s
.IP "--dtf=datetimeformat"
datetime format, may contain M D Y h m s, example: D.M.Y h:m:s
.IP "--locale=locale"
locale of the export file, influences the number appearance
.IP "--charset=charset"
charset of the export file
.IP "-f, --filter=FILTER"
filter of the datasource. It has the same syntax as the WHERE clause of a SQL
statement, just without the 'WHERE'.
.BR Example:
"author_id = 5"
.IP "-h, --host=HOST"
name or IP-number of the host
.IP "-l, --list"
List available database drivers
.IP " --noheader"
if set the column names will not be included in the first row
.IP "-p, --password=PASSWORD"
user password at the SQL server
.IP "-q, --query"
if set the datasource is a query, not a table
.IP "-r, --port=PORT"
TCP-port on host
.IP "-u, --user=USERNAME"
user name at the sql-server
.IP "--version"
version and author of hk_classes
.SH DIAGNOSTICS
hk_exportcsv returns 0 if everything was ok, or 1 if an error occured. A clear text error message
will be written to stderr.
.SH AUTHOR
Horst Knorr <hk_classes@knoda.org>
.http://hk-classes.sourceforge.net
.SH SEE ALSO
.BR hk_actionquery (1),
.BR hk_exportxml (1),
.BR hk_importcsv (1),
.BR hk_report (1)
|