[YAN HONG YE]

> my sqlite database want to export to html file, I know the command 
> sqlite3 -html film.db "select * from film;" 
> could show the table in cmd window, but how to export to the html file  like 
> sqlite3 -html film.db  mm.html "select * from film;"

sqlite3 -html film.db "select * from film" > mm.html

That's Unix syntax.  I'm not sure about Windows, but I suppose you can
do something similar.

-- 
Steinar
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to