程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> c#-用C#只刪除了listview中的選中的一行,但沒刪除數據庫中的

c#-用C#只刪除了listview中的選中的一行,但沒刪除數據庫中的

編輯:編程綜合問答
用C#只刪除了listview中的選中的一行,但沒刪除數據庫中的

string strSQL = "delete from GrindingWheelInformation where listView1.SelectedItems[0]'" + listView1.SelectedItems.ToString() + "'";
string connstr = "Provider=Microsoft.Jet.OleDb.4.0;";
connstr += @"Data Source=D:\Merger20150208_caohuan\GEARCNC.mdb";
OleDbConnection tempconn = new OleDbConnection(connstr);//連接數據庫
String str = "select * from GrindingWheelInformation";//創建執行SQL語句

            listView1.Items.Remove(listView1.SelectedItems[0]);

最佳回答:


看看delete語句執行了沒有,執行語句是否拼接正確。

caohuan95568
caohuan95568
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved