Database Single Query: Throw error if multiple rows found option

Database Single Query: Throw error if multiple rows found option

Why would you want an error to be thrown for a database query?
The single query purpose is to return a single record, no matter if it returns one or multiple records.

Safety guarantee in cases where I'm expecting one and only one row present in the database given the supplied query conditions.

But it's fine if you don't see the appeal, I can do a standard query and assert if the count == 1 :wink: