我在Ubuntu x64上的monodevelop上使用c#。 我试图使用Mono.Data.Sqlite连接到本地(localhost)数据库,但我无法连接到它。 这是我的连接字符串:
string connsqlstring = "Server=localhost;" +
"Database=wsep;" + "User ID=root;" + "Password=1234;" + "Pooling=false";
但我一直在接受:
System.Data.SqlClient.SqlException: Server does not exist or connection refused.
我已经启动了服务器(sudo /etc/init.d/mysql start) 我错过了什么?
答案 0 :(得分:0)
简而言之, SQLite 与 MySQL 不同。他们是不同的数据库。
SQLite是一个平面文件数据库,您可以阅读有关here的单面版本。
MySQL包含信息on the mono website,该页面还提供了下载MySQL连接器以用于单声道项目的链接。您将需要查看这些链接以使用MySQL。