Re: [sqlite] how to wrie "" char in my html file?

Sat, 31 Mar 2012 05:25:06 -0700

On Sat, Mar 31, 2012 at 2:55 AM, YAN HONG YE <yanhong...@mpsa.com> wrote:
>>sqlite3 -html C:\mydatabase\mydzh.db "select '<table>'">mm.html
> this command result is not <table> in the mm.html file, it's this following 
> text:
> <TR><TD>&lt;table&gt;</TD>
> </TR>
> not I wanted, how to wrie <table> char in my html file?

This seems to be the code I sent you privately except its been changed
from what I wrote so that it no longer works.  The original code did
not use -html .

Also for those who are more used to UNIX since we are on Windows here,
note that
 echo "<table>"
and
 echo '<table>'
do NOT work (the first outputs double quotes and the second does not
escape the angle brackets) but as an alternative this does work:
 echo ^<table^>
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to