[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: GSoC: Adding a web interface similar to the Hydra web interface
From: |
Clément Lassieur |
Subject: |
Re: GSoC: Adding a web interface similar to the Hydra web interface |
Date: |
Sun, 29 Jul 2018 14:01:01 +0200 |
User-agent: |
mu4e 1.0; emacs 26.1 |
Danny Milosavljevic <address@hidden> writes:
> Hi Tatiana,
>
> On Sun, 8 Jul 2018 21:48:32 +0200
> Tatiana Sholokhova <address@hidden> wrote:
>
>> Do you have ideas on how to
>> implement tuple comparison and other routines in SQL and guile in a
>> convenient and flexible way?
>
> sqlite3 supports row values, so the comparison can be
> written like this:
>
> select * from foo where (a,b,c) = (2,'foo',3);
>
> It even supports NULLs for wildcards, though it's a little more complicated:
>
> select * from foo where coalesce((a,b,c) = (2,NULL,3), 1) = 1;
>
> The sqlite C interface doesn't support parameter bindings for the entire
> row, though, so you'd have to specify 3 values.
>
> This works:
>
> (sqlite-exec db "select * from foo where (a,b,c) = (" 2 "," "foo" "," 3
> ");")
>
> but this doesn't work, unfortunately:
>
> (sqlite-exec db "select * from foo where (a,b,c) = " '(2 "foo" 3) ";")
>
> See also https://www.sqlite.org/rowvalue.html
With the '<' operator, it doesn't give the results we are looking for, I
think.
For example:
select (0,1) < (1,0); -- returns 1
select (0,0) < (0,1); -- returns 1
In both cases, we'd want it to return 0.
I think we should use:
select (0 < 1) and (1 < 0); -- returns 0
select (0 < 0) and (0 < 1); -- returns 0
instead, for the pagination borders code.
- Re: GSoC: Adding a web interface similar to the Hydra web interface, Tatiana Sholokhova, 2018/07/04
- Re: GSoC: Adding a web interface similar to the Hydra web interface, Gábor Boskovits, 2018/07/08
- Re: GSoC: Adding a web interface similar to the Hydra web interface, Clément Lassieur, 2018/07/18
- Re: GSoC: Adding a web interface similar to the Hydra web interface, Tatiana Sholokhova, 2018/07/19
- Re: GSoC: Adding a web interface similar to the Hydra web interface, Amirouche Boubekki, 2018/07/19