Executes a prepared SELECT statement and populates a single object.
This method is useful for queries that are expected to return exactly one row (e.g., "SELECT * FROM table WHERE id = 5"). The first row is used to populate the provided object.
| stmt |
The prepared statement to execute |
| row |
The object to populate with the first row's data |
|
true if a row was found and populated, false otherwise |