Structs§
- Result of a single query
Contains all rows returned by the database and some more information QueryResult::rows()or a similar function called on a bad QueryResult.
ExpectedQueryResult.rowsto beSome, but it wasNone.
QueryResult.rowsisSomefor queries that can return rows (e.gSELECT).
It isNonefor queries that can’t return rows (e.gINSERT).QueryResult::result_not_rows()called on a bad QueryResult.
ExpectedQueryResult.rowsto beNone, but it wasSome.
QueryResult.rowsisSomefor queries that can return rows (e.gSELECT).
It isNonefor queries that can’t return rows (e.gINSERT).