Describes database result set.
You can find more information in comments below.
struct DbResult
{
bool Successful; // Indicates whether query was executed successfully or not
int64 AffectedRowCount; // Row count affected by the query (for UPDATE and DELETE-like queries)
DbColumns Columns; // Column descriptions
DbRows Rows; // Result rows
};
Namespace: | nitisa |
Include: | Nitisa/Db/DbResult.h |