我正在尝试简单地将网页打印到我正在使用的SQL版本,这是我老师提供的代码,我已经放入我的服务器和数据库,我不知道如何找到我的数据库用户名和如果有密码
// add here your connection details
String connectionString = "SERVER=127.0.0.1; DATABASE=dblogin;"
+ "UID=YOUR_DB_USERNAME; PASSWORD='';";
// create and open a connection to the database
MySqlConnection connection = new MySqlConnection(connectionString);
connection.Open();
// print the MySQL version in a console
ReturnError.Text = ("MySQL version: " + connection.ServerVersion);
// this line will prevent the console from closing immediately
// to close the console just press any key
答案 0 :(得分:0)
在安装mysql期间,它通常会询问root
用户名和密码,请尝试使用空密码root
,如果它不起作用 - http://dev.mysql.com/doc/refman/5.0/en/resetting-permissions.html