transactions expanded.

This commit is contained in:
2026-06-29 09:49:27 +02:00
parent 82fe0996f0
commit 0efd6e14cc
2 changed files with 35 additions and 1 deletions
+16 -1
View File
@@ -134,7 +134,22 @@ it will do a "BEGIN/ROLLBACK" abd re-raise the exception.
Commits (part of a transaction) using COMMIT/BEGIN.
Fits in a @tt{ks-transaction} form.
}
}
@defproc[(ks-begin-transaction [ks keystore?]) boolean?]{
Begins a transaction with "BEGIN".
}
@defproc[(ks-end-transaction [ks keystore?]) boolean?]{
Commits a transaction with "COMMIT".
}
@defproc[(ks-abort-transaction [ks keystore?]) boolean?]{
Aborts a transaction with "ROLLBACK".
}
@section{Examples}