Unity3d连接SQLServer数据库

时间:2023-01-21 11:33:48

本人使用的Unity版本为4.2.1。
        在编写代码之前需要:
1.引入程序集System.Data.dll,位置在C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity(我unity默认装在C盘)。
2.把System.Data.dll文件复制到当前Unity项目文件下,即Assets文件夹下就可以了。

相关C#代码如下:

public class ConnectionSqlserver : MonoBehaviour
{
void Start()
{
//连接字符串
SqlConnection connstr = new SqlConnection("Data Source=.;Initial Catalog=Exam;uid=sa;pwd=123");
SqlCommand cmd = new SqlCommand();
cmd.Connection = connstr;
cmd.CommandType = System.Data.CommandType.Text;
//设置sql连接语句
cmd.CommandText = "select * from Users";
SqlDataAdapter sda = new SqlDataAdapter(cmd);
sda.SelectCommand.Connection.Open();
string strtemp = sda.SelectCommand.ExecuteScalar().ToString();
sda.SelectCommand.Connection.Close();
print("连接数据库成功!" + strtemp);
}
}

当然这只是其中一种方法,祝大家连接数据库成功!

详情请参照:http://game.ceeger.com/forum/read.php?tid=2752&fid=2