写入Access数据库的问题
原本想着很简单的问题,只是在上用几个textBox的text内容,写入到数据库中设置好的空表,本代码在CLR上,不是基于MFC,希望注意,
代码如下:
System::String ^strCon ="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\\weather_report.mdb";
System::String ^ strCom = "INSERT INTO weather_report (Day, time, city, weather,temp,wind)"
"VALUES( '2001/12/25 20:30:15', '夜', 'guangzhou','SUN','32','无')";
OleDbConnection^ myConn = gcnew OleDbConnection(strCon);
myConn->Open();
//打开数据链接,得到一个数据集
// OleDbDataAdapter ^myCommand = gcnew OleDbDataAdapter(strCom, myConn);
myConn->Close();
编译通过,但是Access还是没更新
敢问大伙,谁知道原因??告诉下。