I have a stored procedure that returns up to 3 rows of data from a single table.
I have a data class method that calls this stored procedure and returns a DataSet.
However, when I call the method and attempt to return the table name, it returns "Table":
string tablename = TheClass.GetRecords().Tables[0].TableName.ToString();

why is Tables[0].TableName.ToString() = "Table"??
Darkdog
Joe