Re: [sqlite] Elegant printout of table (with header) via TCL

2012-03-05 Thread rod
>On 6 Mar 2012, rod wrote: >> On 2/9/12, rod wrote: >> > >> > I'm looking for a better way to printout the: >> > Column Headers, >> > followed by the table contents - >> > in comma separated value (tsv) format >> > from a SELECT statement: >> By setting a trace I am >> able to reset a variable

Re: [sqlite] Elegant printout of table (with header) via TCL (solved)

2012-03-03 Thread Larry Brasfield
On 3 Mar 2012, rod wrote: On 2/9/12, rod wrote: > My apologies if this question should be directed to some other list. > > I'm looking for a better way to printout the: > Column Headers, > followed by the table contents - > in comma separated value (tsv) format > from a SELECT statement: > > >

Re: [sqlite] Elegant printout of table (with header) via TCL (solved)

2012-03-03 Thread rod
On 2/9/12, rod wrote: > My apologies if this question should be directed to some other list. > > I'm looking for a better way to printout the: > Column Headers, > followed by the table contents - > in comma separated value (tsv) format > from a SELECT statement: > > > So

Re: [sqlite] Elegant printout of table (with header) via TCL

2012-02-10 Thread rod
2012/2/9 rod : > My apologies if this question should be directed to some other list. > > I'm looking for a better way to printout the: > Column Headers, > followed by the table contents - > in comma separated value (csv) format > from a SELECT statement: > On Fri, Feb

Re: [sqlite] Elegant printout of table (with header) via TCL

2012-02-10 Thread Alexey Pechnikov
See pragma table_info 2012/2/9 rod : > My apologies if this question should be directed to some other list. > > I'm looking for a better way to printout the: > Column Headers, > followed by the table contents - > in comma separated value (csv) format > from a SELECT

[sqlite] Elegant printout of table (with header) via TCL

2012-02-09 Thread rod
My apologies if this question should be directed to some other list. I'm looking for a better way to printout the: Column Headers, followed by the table contents - in comma separated value (csv) format from a SELECT statement: So far I have two solutions, neither seems elegant enough. First