瀏覽量:64次
1、找到System.Data.dll文件,默認(rèn)的地址是在C:Program FilesUnityEditorDataMonolibmonounity,這個根據(jù)你所安裝的路徑有關(guān)。
2、將該文件復(fù)制到你的工作空間下的Asset文件夾內(nèi)
3、在你的編輯器中添加引用,我用的是VS
4、在命名空間內(nèi)增加程序集
using System;
using System.Data;
using System.Data.SqlClient;
5、編寫連接數(shù)據(jù)庫代碼
SqlConnection con = null;
SqlDataAdapter sda = null;
void Start()
{
string s = @"server=.;database=ConnectTest;uid=sa;pwd=123456"; //注意,這里必須使用SQL Server和Windows驗證模式,否則會報錯
con = new SqlConnection(s);
con.Open();
string sql = "select * from table1";
sda = new SqlDataAdapter(sql, con);
DataSet ds = new DataSet();
sda.Fill(ds, "table1");
print(ds.Tables[0].Rows[0][0]);
}
6、實驗結(jié)果
[聲明]本網(wǎng)轉(zhuǎn)載網(wǎng)絡(luò)媒體稿件是為了傳播更多的信息,此類稿件不代表本網(wǎng)觀點,本網(wǎng)不承擔(dān)此類稿件侵權(quán)行為的連帶責(zé)任。故此,如果您發(fā)現(xiàn)本網(wǎng)站的內(nèi)容侵犯了您的版權(quán),請您的相關(guān)內(nèi)容發(fā)至此郵箱【779898168@qq.com】,我們在確認(rèn)后,會立即刪除,保證您的版權(quán)。
官網(wǎng)優(yōu)化
整站優(yōu)化
渠道代理
400-655-5776