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]);
提前致谢。