在我的Activity函数中,当我使用ConfigurationManager时,它无法正常工作。您能否建议任何其他方法来实现SQL连接的应用程序设置和设置?
我使用下面的代码连接到SQL数据库。
public static DataTable getDataFromSql()
{
var con = ConfigurationManager.ConnectionStrings["XYZ"].ConnectionString;
DataTable dataTable = new DataTable();
using (SqlConnection myConnection = new SqlConnection(con))
{
string oString = $"SELECT * FROM TableName";
SqlCommand oCmd = new SqlCommand(oString, myConnection);
myConnection.Open();
SqlDataAdapter da = new SqlDataAdapter(oCmd);
da.Fill(dataTable);
myConnection.Close();
da.Dispose();
}
return dataTable;
}
答案 0 :(得分:0)
我们可以使用以下代码来实现应用程序设置:
public static string GetEnvironmentVariable(string name)
{
return name + ": " +
System.Environment.GetEnvironmentVariable(name, EnvironmentVariableTarget.Process);
}
更多信息供您参考: