Hello everyone!
I'm working with a service that queries a database.
The query response is executed as stream<model, error?> dbResult = connection -> query (SELECT NAME, AGE FROM PERSON);
When I run dbResult.count(), it returns 1 instead of 0 when it doesn't find any records. How can I get it to return the number of rows?
I'm working with version 2201.10.3