https://kotlinlang.org logo
#exposed
Title
# exposed
p

Paul Higgins

02/11/2022, 9:13 PM
In the DAO does a transaction return anything to inspect the results? For example if I update a record in a transaction, does it return any success/failure information or a result or will it only throw an exception if there's a failure to make the write? Similarly, for the DSL I see calling the Table.update returns an Int that looks like the number of rows actually updated? Does anything other than the expected number indicate a failure, or would those only be surfaced as exceptions?
s

spand

02/14/2022, 2:17 PM
failures usually lead to exceptions. I dont think I have experienced otherwise. ie. there are options like
insertIgnore
for fire-and-forget situations