gpt4 book ai didi

c# - Xamarin,Android-MySQL 连接错误

转载 作者:行者123 更新时间:2023-11-29 17:36:32 26 4
gpt4 key购买 nike

我正在尝试通过 Xamarin android 连接 mysql 数据库。我的代码如下:

 con = new MySqlConnection("xxxxxxxxxxxx");
con.Open();//gives error at this line

它给了我以下错误:

Unhandled Exception: System.TypeInitializationException: The type initializer for 'MySql.Data.MySqlClient.Replication.ReplicationManager' threw an exception. occurred

当我检查 C# Interactive 时,它​​显示了这一点;

            con.Open();

(1,17): error CS0103: 'con' does not exist in the current context

最佳答案

我认为首先,你应该检查你的连接字符串,在 C# 交互式中,你首先需要初始化变量才能使用它们。您不能使用代码中的变量,因为 C# Interactive 不识别它们。您应该在 C# 交互式中尝试此操作:

 con = new MySqlConnection(<your Connection string>);
con.Open()

关于c# - Xamarin,Android-MySQL 连接错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50240292/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com