Re: [sqlite] SQL parsing logic for triggers

2016-10-09 Thread gwenn
On Sun, Oct 9, 2016 at 12:14 PM, Richard Hipp wrote: > On 10/9/16, gwenn wrote: >> Hello, >> I am just looking for information (I am not asking for any change): >> It is for (auto) completion hints. >> >> 1) it seems not possible to insert default values in

Re: [sqlite] SQL parsing logic for triggers

2016-10-09 Thread Richard Hipp
On 10/9/16, gwenn wrote: > Hello, > I am just looking for information (I am not asking for any change): > It is for (auto) completion hints. > > 1) it seems not possible to insert default values in trigger command: > > // INSERT > trigger_cmd(A) ::= insert_cmd(R) INTO

Re: [sqlite] SQL parsing logic for triggers

2016-10-09 Thread gwenn
Sorry, I've just found the answer to the first question here: http://www.sqlite.org/lang_insert.html Regards. On Sun, Oct 9, 2016 at 10:34 AM, gwenn wrote: > Hello, > I am just looking for information (I am not asking for any change): > It is for (auto) completion hints. >

[sqlite] SQL parsing logic for triggers

2016-10-09 Thread gwenn
Hello, I am just looking for information (I am not asking for any change): It is for (auto) completion hints. 1) it seems not possible to insert default values in trigger command: // INSERT trigger_cmd(A) ::= insert_cmd(R) INTO trnm(X) idlist_opt(F) select(S). versus //