Please draft us a Scheme API
Lassi Kortela
(17 Sep 2019 18:54 UTC)
|
Re: Please draft us a Scheme API
John Cowan
(17 Sep 2019 19:08 UTC)
|
What should Hello World be like?
Lassi Kortela
(18 Sep 2019 08:41 UTC)
|
Re: What should Hello World be like?
Lassi Kortela
(18 Sep 2019 08:54 UTC)
|
Re: What should Hello World be like?
John Cowan
(19 Sep 2019 01:14 UTC)
|
Re: What should Hello World be like?
hga@xxxxxx
(19 Sep 2019 02:31 UTC)
|
Re: What should Hello World be like?
Lassi Kortela
(19 Sep 2019 15:35 UTC)
|
Re: What should Hello World be like?
Peter Bex
(19 Sep 2019 18:02 UTC)
|
Re: What should Hello World be like?
hga@xxxxxx
(19 Sep 2019 22:50 UTC)
|
Re: What should Hello World be like?
John Cowan
(19 Sep 2019 19:46 UTC)
|
Re: What should Hello World be like?
hga@xxxxxx
(19 Sep 2019 20:50 UTC)
|
Re: What should Hello World be like?
Lassi Kortela
(19 Sep 2019 21:14 UTC)
|
Re: What should Hello World be like? Peter Bex (20 Sep 2019 07:49 UTC)
|
Re: What should Hello World be like?
Alaric Snell-Pym
(20 Sep 2019 10:55 UTC)
|
Re: What should Hello World be like?
John Cowan
(20 Sep 2019 13:25 UTC)
|
Re: What should Hello World be like?
John Cowan
(20 Sep 2019 14:04 UTC)
|
Re: What should Hello World be like?
Lassi Kortela
(23 Sep 2019 10:54 UTC)
|
Connection strings, and representing them as lists
Lassi Kortela
(23 Sep 2019 10:57 UTC)
|
John's Simple SQL API
hga@xxxxxx
(19 Sep 2019 11:38 UTC)
|
Re: John's Simple SQL API
John Cowan
(19 Sep 2019 20:28 UTC)
|
Re: Please draft us a Scheme API
hga@xxxxxx
(17 Sep 2019 19:11 UTC)
|
Re: Please draft us a Scheme API
John Cowan
(17 Sep 2019 19:12 UTC)
|
Re: Please draft us a Scheme API
Lassi Kortela
(17 Sep 2019 19:32 UTC)
|
Re: Please draft us a Scheme API
John Cowan
(17 Sep 2019 19:35 UTC)
|
Re: Please draft us a Scheme API
Lassi Kortela
(17 Sep 2019 19:27 UTC)
|
On Fri, Sep 20, 2019 at 12:14:37AM +0300, Lassi Kortela wrote: > If you live and breathe databases this is probably a non-issue, but for us > plebs, a typical SQL database looks a bit like Howl's Moving Castle. Haha, I love that analogy. > > > You might be inside transactions on two connections at the same time, as when you are copying data from one db to another. > > Wow, that is true! So transactions need to have labels. Perhaps be passed as > lambda arguments to be bound to variables. I don't really see why that's necessary. just accept the database connection as an argument and roll back the current deepest transaction inside that database. You might not even want to roll back the other connection's transaction! (think, for example, about logging attempts made to update db1, and logging failure in db2). This is all highly dependent on the logic of the application. I'm not sure exactly what a rollback call ought to do though after aborting the transaction; should it invoke the continuation of the closest with-transaction block? Then perhaps the rollback procedure should also accept the value(s) to pass to said continuation as rest args: (rollback! db return-value1 ...) Just continuing with the regular flow seems unwise to me, as those statements would then be taking place in the parent transaction. Cheers, Peter