Viniscius Ribeiro

Results 9 comments of Viniscius Ribeiro

Just ran into the same idea, this would be lovely!

Thank you for the prompt response, much appreciated! My initial example didn't really represent my use case, my apologies. :( I have multiples criterias, e.g., `SELECT score FROM person WHERE...

You are missing the score parameter but yes. The idea is being able to set one of the parameters as list and have the same behavior when you are setting...

I see, for some reason I thought that the anonymous parameters where set using an index `(0, firstParam),(1, second),...` like PreparedStatement. my main concern here is performance since I'm spanning...

It all makes sense now, awesome! Thank you very much!

Thank you very much! Checking it out!

When is the transaction commit/rollback? (since I could span the initial tx across multiple methods for each operation) I will try to put up the test cases in a bit,...

Got it to work with a SQL workaround (PostgreSQL DB) `SELECT (CASE WHEN SUM(amount) ISNULL THEN -1 ELSE SUM(amount) END) FROM table`

Thank you for the reference! It didn't even cross my mind 👍