Hello,
I miss the functionnality of some other sql motors that keep the comments
inside an object definition, like a table.
Example : (with sqlite.exe 3.8.3)
create table /* This table has an educative purpose */ toto(x);
create table /* This table has an educative purpose */
toty( x );
create table
totz( x );
select sql from sqlite_master;
... gives :
CREATE TABLE TOTO(X)
CREATE TABLE TOTY( X )
CREATE TABLE
TOTZ(X)
... instead of the original full statements :
create table /* This table has an educative purpose */ toto(x)
create table /* This table has an educative purpose */
toty( x )
create table
totz( x )
This sounds quite illogical, as :
- Newlines and spaces are kept, (if not around a comment)
- the SQLite internal parser would re-parse (and remove comments) from the
original statement without issue.
==> Would it be possible to keep comments, without loosing compatibility ?
Regards,
_______________________________________________
sqlite-users mailing list
[email protected]
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users