C# NotSupportedException:找不到编码874数据。确保安装并启用了正确的国际代码集程序集

C# NotSupportedException:找不到编码874数据。确保安装并启用了正确的国际代码集程序集,c#,unity3d,C#,Unity3d,我正在尝试使用类SqlConnection编写代码。我在UNITY_编辑器上运行并没有问题,但当我尝试构建.apk文件并尝试运行时。图中显示了问题所在。我试着一个一个地调试出来。发现连接.Open()有问题方法 代码示例: string connectionString = "Data Source=server01;Initial Catalog=StoreDB;User ID=sa;Password=sapassword;"; SqlConnection connecti

我正在尝试使用类SqlConnection编写代码。我在UNITY_编辑器上运行并没有问题,但当我尝试构建.apk文件并尝试运行时。图中显示了问题所在。我试着一个一个地调试出来。发现
连接.Open()有问题方法

代码示例:

string connectionString = "Data Source=server01;Initial Catalog=StoreDB;User ID=sa;Password=sapassword;";
SqlConnection connection = new SqlConnection(connectionString);
connection.Open();
SqlCommand sqlCommand = new SqlCommand();
sqlCommand.Connection = connection;
sqlCommand.CommandText = "SELECT username FROM dbo.Profile_Users";
SqlDataAdapter dataAdapter = new SqlDataAdapter(sqlCommand);
DataTable profile_Username = new DataTable();
dataAdapter.Fill(profile_Username);
问题:不支持异常:找不到编码874数据。确保安装并启用了正确的国际代码集程序集

我如何解决这个问题