if you set this to True on a prom.Orm instance it will cause insert() and update() to fail.
I was in a situation where I needed to mimic some production data in the test environment and it would've been nice to just have an added level of WTF just in case I accidentally triggered a change
this could actually be deeper, you could put it on the connection url &readonly=1 and it will cause insert, update, and delete queries to fail at the interface level
if you set this to
True
on a prom.Orm instance it will causeinsert()
andupdate()
to fail.I was in a situation where I needed to mimic some production data in the test environment and it would've been nice to just have an added level of WTF just in case I accidentally triggered a change