GNU bug report logs -
#58363
29.0.50; sqlite-select does not signal errors and errors should be improved
Previous Next
Reported by: Jonas Bernoulli <jonas <at> bernoul.li>
Date: Fri, 7 Oct 2022 18:54:01 UTC
Severity: normal
Found in version 29.0.50
Fixed in version 29.1
Done: Lars Ingebrigtsen <larsi <at> gnus.org>
Bug is archived. No further changes may be made.
Full log
Message #19 received at 58363 <at> debbugs.gnu.org (full text, mbox):
Lars Ingebrigtsen <larsi <at> gnus.org> writes:
> Jonas Bernoulli <jonas <at> bernoul.li> writes:
>
>> sqlite-select does not signal any errors. This just returns nil for
>> example:
>>
>> (sqlite-select (sqlite-open nil) "SELECT * FROM no_such_table")
>>
>> At least some of the other functions do signal errors when appropriate.
>
> I've now made this signal an error:
>
> Debugger entered--Lisp error: (error "SQL logic error")
Thanks, but what about my suggestion to use a dedicated signal?
(Suggesting that different signals be used for different error
codes, may have been a bit excessive though.)
More importantly though, please also include the actual error
message from SQLite in the error data. Currently only a string
is included, which represents the _kind_ of error that occurred,
something like "SQL logic error".
Unfortunately that only tells the user that they made a mistake
when writing their SQL. When using pekingduck's module or EmacSQL's
custom binary, the error data includes the error code and the error
message, such as the very useful "no such table: missing".
Please include the message in the error data.
Including the error code would also be useful as that would make
it easier to look it up at https://www.sqlite.org/rescode.html.
I am adding two new SQLite backends to EmacSQL, one using the module
and the other using the new builtin support.
Currently
(emacsql (emacsql-sqlite nil) "SELECT * FROM missing")
and
(emacsql (emacsql-sqlite-module nil) "SELECT * FROM missing")
both signal
(emacsql-error "no such table: nono" 1)
and I considering extending that to
(emacsql-error "no such table: nono" 1 "SQL logic error")
However, the best I can do for
(emacsql (emacsql-sqlite-builtin nil) "SELECT * FROM missing")
is
(emacsql-error nil 1 "SQL logic error")
This bug report was last modified 2 years and 208 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.