Re: [sqlite] how to export to html file with table

2012-03-27 Thread ajm
a: Tue, 27 Mar 2012 03:26:30 +0200 > Asunto: Re: [sqlite] how to export to html file with table > > > > >On 27 Mar 2012, at 2:22am, YAN HONG YE wrote: > >> From: Steinar Midtskogen >> >>> to export to the html file command is: >>> >>>

Re: [sqlite] how to export to html file with table

2012-03-26 Thread Larry Brasfield
On March 26, YAN HONG YE wrote: (apparently quoting Steinar Midtskogen, quotation demarked) > to export to the html file command is: sqlite3 -html film.db "select * from film" > mm.html but the result had no table,only a text file without line feed, how to export the html with tables and ta

Re: [sqlite] how to export to html file with table

2012-03-26 Thread Simon Slavin
On 27 Mar 2012, at 2:22am, YAN HONG YE wrote: > From: Steinar Midtskogen > >> to export to the html file command is: >> >> sqlite3 -html film.db "select * from film" > mm.html > > but the result had no table,only a text file without line feed, how to export > the html with tables and table

[sqlite] how to export to html file with table

2012-03-26 Thread YAN HONG YE
Date: Mon, 26 Mar 2012 08:22:56 +0200 From: Steinar Midtskogen to export to the html file command is: sqlite3 -html film.db "select * from film" > mm.html but the result had no table,only a text file without line feed, how to export the html with tables and table column header? __