在 C# 桌面应用程序中连接到在线 MySQL 数据库

本文关键字:在线 MySQL 数据库 连接 桌面 应用程序 | 更新日期: 2023-09-27 17:56:32

我在连接到数据库时遇到问题。

private static readonly string s_connectionString = "Server=db.inu.hu; Database=patientRegistry;UID=****; Password=****; Port=3306; Trusted_Connection=true";

这是我的连接字符串,有了这个我无法打开连接。

 using (SQLiteConnection conn = new SQLiteConnection(s_connectionString))
  {
      conn.Open();
  }

我认为问题可能是我在数据库中有一个表,需要将其添加到连接字符串中。

在 C# 桌面应用程序中连接到在线 MySQL 数据库

您是否正在尝试连接到MySQL或SQLite?您正在引用SQLiteConnection对象,但我认为您需要改用MySqlConnection连接对象。