What is the simplest way to handle a query that you know is only going to return a column name and one value? I don't really want to mess with a dataGridView. I just want the integer. Thanks.
sql = "SELECT COUNT(*) FROM ITEM_TABLE ;"
What is the simplest way to handle a query that you know is only going to return a column name and one value? I don't really want to mess with a dataGridView. I just want the integer. Thanks.
sql = "SELECT COUNT(*) FROM ITEM_TABLE ;"