Other than issuing a SQL statement like:
Code:
SELECT COUNT() FROM ..
or running a loop on my results and counting them, is there anyway to get a row count from
Code:
System::Data::Odbc::OdbcDataReader^ reader = g_cmd->ExecuteReader();
I've checked reader methods and none of them return the count.
returns a count but I do not know of what.