Has anyone used Wappler transactions and do they work fine?

Has anyone used Wappler transactions and do they work fine for inserting bulk data or something similar?

Any problems when two transactions execute at the same time? (Reference)

I don’t have mental energy to test this myself, thank you.

P.S.: I’m using PostgreSQL

I’m using transactions and have had no issues so far but can’t add anything to your second question.

1 Like

We use them (with mysql). Seems okay, no magic here does what a db transaction has to do. You cannot trigger a rollback without being creative (Database Transactions - Trigger rollback).

Parallel stuff won’t read each other’s partial changes if that’s what you mean.

1 Like