我想提取我的表名并将其保存到变量中,这是我的 cod,它返回 3 个答案:学生、老师和分数。我如何更改它以将这些树表名称保存为 3 个变量。谢谢你。
try
{
SqlDataReader myreader = null;
SqlCommand mycommand = new SqlCommand("select * FROM information_schema.tables WHERE table_type = 'BASE TABLE'", myconnect);
myreader = mycommand.ExecuteReader();
while (myreader.Read())
{
Console.WriteLine(myreader[2].ToString());
}
}