selectExecuteInto


Description:

public bool selectExecuteInto (Statement stmt, T row)

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.

Parameters:

stmt

The prepared statement to execute

row

The object to populate with the first row's data

Returns:

true if a row was found and populated, false otherwise