我尝试过使用: Topic = QuizData.Tables(“Results”)。Rows(0).Item(0).ToString() 但它只返回了一个数字。我打算将字符串输出到文本框中。
答案 0 :(得分:0)
首先,您需要将数据检索到使用适配器填充的数据集变量中。
adaptor.Fill(dataset, "0")
String Topic = dataset.Tables("Results").Rows(0).Item(0).ToString();
希望这对您有所帮助:)如果您想要更多说明,请告知。