需要聲明使用CommandBuilder對(duì)象,你是 SQL 數(shù)據(jù)庫還是 ACCESS 數(shù)據(jù)庫,這兩者的對(duì)象不一樣的。
十多年建站經(jīng)驗(yàn), 網(wǎng)站設(shè)計(jì)、網(wǎng)站制作客戶的見證與正確選擇。成都創(chuàng)新互聯(lián)提供完善的營(yíng)銷型網(wǎng)頁建站明細(xì)報(bào)價(jià)表。后期開發(fā)更加便捷高效,我們致力于追求更美、更快、更規(guī)范。
對(duì)于:SQL server
Dim Mybuilder As SqlCommandBuilder = New SqlCommandBuilder(da)
da.Update(dt) '使用Update方法實(shí)現(xiàn)更新到數(shù)據(jù)庫
對(duì)于:ACCESS
Dim Mybuilder As OleDbCommandBuilder = New OleDbCommandBuilder(da)
da.Update(dt) '使用Update方法實(shí)現(xiàn)更新到數(shù)據(jù)庫
以下是完整模塊
Imports?System.Data
Imports?System.IO
Imports?System.Data.OleDb
Module?Module1
Public?cn?As?New?OleDb.OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data?Source=C:\ACCESS數(shù)據(jù)庫.mdb")?'定義連接---這里請(qǐng)更改為實(shí)際數(shù)據(jù)庫路徑及名稱
Public?DataBaseRST?As?Integer?'用來返回?cái)?shù)據(jù)庫執(zhí)行結(jié)果
Public?Function?DataModify(ByVal?str?As?String)?As?Boolean?'進(jìn)行數(shù)據(jù)庫修改操作函數(shù)
Dim?cmdinsert?As?New?OleDbCommand
Try
cmdinsert.CommandText?=?str
cmdinsert.Connection?=?cn
If?cn.State?=?ConnectionState.Closed?Then?cn.Open()
DataBaseRST?=?cmdinsert.ExecuteNonQuery()?'用來返回執(zhí)行的結(jié)果
cn.Close()
Return?True
Catch?ex?As?Exception
MessageBox.Show(Err.Description,?"Error",?MessageBoxButtons.OK,?MessageBoxIcon.Error)
Return?False
End?Try
End?Function
Public?Function?Search(ByVal?str?As?String,?ByVal?DGV?As?DataGridView)?As?Boolean?'查詢?str---查詢命令,DGV---DataGridView,用來顯示數(shù)據(jù)的控件
Dim?tb?As?New?DataTable
Try
Dim?ap?As?New?OleDb.OleDbDataAdapter(str,?cn)
ap.Fill(tb)
DGV.DataSource?=?tb
Return?True
Catch?ex?As?Exception
MessageBox.Show(Err.Description,?"Error",?MessageBoxButtons.OK,?MessageBoxIcon.Error)
Return?False
End?Try
End?Function
End?Module
'以下是調(diào)用方法
DataModify("?insert?into?aa?values?('1','2')")'-------這里是數(shù)據(jù)庫更新操作
Search("select?bb?from?aa",DataGridView1)'-----------這里是數(shù)據(jù)表查詢操作
用radiobutton來先選擇要更新數(shù)據(jù)的表: 需要手工寫代碼,構(gòu)建SQL語句了。
可以在radiobutton的 selectChanged 事件中,添加該代碼。
在textbox1,textbox2中輸入文字(分別為周邊景點(diǎn)和評(píng)價(jià))。
點(diǎn)擊button2提交,彈出form1并更新sql表。將字段添加至sql表中新的一行。
進(jìn)行相關(guān)的數(shù)據(jù)綁定操作即可,可以使用VS2005的可視化設(shè)計(jì)進(jìn)行,無需手工代碼。
以下是模塊模塊1
完整的模塊
進(jìn)口System.Data
進(jìn)口System.IO
進(jìn)口System.Data.OleDb
CN作為新OleDb.OleDbConnection (供應(yīng)商= Microsoft.Jet.OLEDB.4.0;數(shù)據(jù)源= C:\ ACCESS數(shù)據(jù)庫的。mdb“)'定義連接---改變到實(shí)際的數(shù)據(jù)庫路徑和名稱
DataBaseRST上的作為整數(shù)使用返回?cái)?shù)據(jù)庫執(zhí)行的結(jié)果
的公共功能DataModify(BYVAL str作為字符串)作為布爾數(shù)據(jù)庫的操作功能
昏暗的cmdinsert作為新的OleDbCommand
嘗試
cmdinsert.CommandText = STR
是用來返回cmdinsert.Connection的= CN
如果cn.State = ConnectionState.Closed cn.Open()
DataBaseRST cmdinsert.ExecuteNonQuery()的執(zhí)行結(jié)果 BR / cn.Close()
,則返回true
趕上前為異常
MessageBox.Show(Err.Description,“錯(cuò)誤”,MessageBoxButtons.OK,MessageBoxIcon.Error)
返回False
嘗試
端的功能
功能搜索(BYVAL作為字符串,BYVAL的DGV作為DataGridView的)作為布爾查詢STR ---查詢命令,DGV ---海峽和DataGridView控件來顯示數(shù)據(jù)
昏暗的結(jié)核病新的DataTable
昏暗的AP嘗試作為的新OleDb.OleDbDataAdapter(STR,CN)
ap.Fill(TB)
DGV作為數(shù)據(jù)源= TB
返回TRUE,“
抓住前異常
MessageBox.Show(Err.Description,”錯(cuò)誤“,MessageBoxButtons.OK,MessageBoxIcon.Error)
則返回false /末嘗試
功能
前端模塊
以下是通話
DataModify(“插入AA值嗎?('1 ','2')“)-------這里是數(shù)據(jù)庫更新操作。
搜索(”選擇BB AA“DataGridView1的)-----------數(shù)據(jù)表的查詢操作。