How exactly does a write to data store work in the background?
- For a single row, it will surely run 1 insert query, what happens when the data is an array? for each row will it run a single query or multiple ones?
Discussion posts and replies are publicly visible
AFAIK, Appian sends the SQL queries generated by the ORM ( object relation mapping) to the database through the database connection pool. (INSERT, UPDATE, DELETE) queries.