我需要在xna 4.0游戏中使用一个数据库,该数据库将保存诸如用户名等数据。您能给我一个有关如何连接到MySQL数据库以及插入语句的示例。谢谢 !

最佳答案

这是C#中mysql的演练和包装器类。
http://iseesharp.blogspot.com/2005/09/mysql-with-c.html

用法:

DbWrapper myWrapper = new DbWrapper("localhost", "CS",
    "iseesharp", "seesharper");
myWrapper.Connect();

myWrapper.AddUser("Rowan", "ISeeSharp");
if (myWrapper.UserExists("rowan"))
{
    Console.WriteLine("Something's weird here");
}
else
    if (myWrapper.UserExists("Rowan"))
{
    Console.WriteLine("I exist, therefore I think!");
}

myWrapper.Disconnect();

08-05 10:14