I have a question regarding transactions in doobie. I have looked over the documentation here and it looks like it can only handle one query at a time?
Is it possible to have something like this
sql'''
begin;
select * from table where id=1 for update;
update table set id=2 where tabletest=2;
commit'''
any ideas or more examples/documentations anyone can point me to will be much appreciated! thank you!!