i got a question. I want to get the count value and put it in a int. I'm trying it with the code below. I got a game that has 20 reviews so i need to count all the reviews to get that number. Once i get that number i can go further. But when i want to convert or even use tableCount.Rows[0][0] it will crash. What is going wrong? when i put the commandCount in a sql query it will run fine and give me back my number 20. So is the number at a different place then [0][0]??
string commandCount = "SELECT COUNT(*) FROM REVIEW WHERE review_game_id = '" + game_id + "'";
OleDbDataAdapter adapterCount = new OleDbDataAdapter(commandCount, connectionString);
DataTable tableCount = new DataTable();
tableCount.Clear();
int reviewCount = Convert.ToInt32(tableCount.Rows[0][0]);
Thanks in advance.