gpt4 book ai didi

c# - 在 Xamarin.Forms 中使用 SqlConnection?

转载 作者:行者123 更新时间:2023-12-02 20:06:36 26 4
gpt4 key购买 nike

我可以在 Xamarin.Forms 中使用 SqlConnection 吗?

我倾向于在 Visual Studio 中开发的 Windows 和 Web 应用程序中使用它,但我不知道它在 Xamarin 中如何工作。

即使在添加引用 Mono.Data.SqliteSystem.Data.

        SqlConnection conn = new SqlConnection(ConnectionString);
SqlDataAdapter da = new SqlDataAdapter();
SqlCommand cmd = conn.CreateCommand();
cmd.CommandText = SQL;
da.SelectCommand = cmd;
DataSet ds = new DataSet();

conn.Open();

da.Fill(ds);
conn.Close();

是否可以使用此代码片段或是否需要以其他方式完成?

我正在将代码添加到属于 Xamarin.Forms 项目的类中。

最佳答案

无法建立 SQL 连接。通常,Xamarin 支持的平台不支持传统数据库(SQLite 除外,如果您可以算进去的话),因此这样的连接没有意义。

如果要在 Xamarin 中连接到真实的数据库,这些数据库必须具有 Web 界面。同样,这不是 Xamarin 的限制,而是几乎所有受支持平台的限制。

关于c# - 在 Xamarin.Forms 中使用 SqlConnection?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54471457/

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