Mysql连接的连接字符串

时间:2013-11-28 06:42:32

标签: c# mysql asp.net .net vb.net

我有以下mysql数据库设置:

enter image description here

我已将连接字符串设为:

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帮助。

enter image description here

1 个答案:

答案 0 :(得分:0)

未知数据库错误通常意味着您正在指定不存在的数据库。您确定数据库名称(不是您需要的表格)是ink_productionjob吗?