我有以下mysql数据库设置:
我已将连接字符串设为:
server=localhost;database=Ink_ProductionJob;Port=3306;username=root;password=''
代码:
connection = New MySqlConnection(ConfigurationSettings.AppSettings("ConnSQLString"))
connection.Open()
但是给我错误:
Authentication to host 'localhost' for user 'root' using method 'mysql_native_password' failed with message: Unknown database 'ink_productionjob'
请帮我解决这个问题。
首次建立MySql和.NET连接。
Plz帮助。
答案 0 :(得分:0)
未知数据库错误通常意味着您正在指定不存在的数据库。您确定数据库名称(不是您需要的表格)是ink_productionjob吗?