先搞個讀寫類,還要新增mysql.data應用
再建立乙個web窗體
讀取資料庫
string strsql = "select * from input";//讀取資料的sql語句
gridview1.datasource = me.gettable(strsql);//呼叫讀資料的函式進行讀,並把讀取的表返回,並繫結到資料控制項上。
gridview1.databind();
新增入庫資訊
string strsql = "insert into input(產品名稱,產品編號,入庫數量,入庫時間,入庫人,產品規格) values('" + 產品名稱.text + "'";
strsql = strsql + ",'" + 產品編號.text + "'";
strsql = strsql + ",'" + 入庫數量.text + "'";
strsql = strsql + ",'" + 入庫時間.text + "'";
strsql = strsql + ",'" + 入庫人.text + "'";
strsql = strsql + ",'" + 產品規格.text + "'";
strsql = strsql + ")";
me.execsql(strsql);
strsql = "update product set 庫存數量=庫存數量+" + 入庫數量.text + " where 產品名稱='" + 產品名稱.text + "'";
me.execsql(strsql);
button_read_click(sender, e);
更新資訊
string strsql = "update input set id='" + id.text + "'";
strsql = strsql + ",產品編號='" + 產品編號.text + "'";
strsql = strsql + ",產品名稱='" + 產品名稱.text + "'";
strsql = strsql + ",入庫數量='" + 入庫數量.text + "'";
strsql = strsql + ",入庫人='" + 入庫人.text + "'";
strsql = strsql + ",入庫時間='" + 入庫時間.text + "'";
strsql = strsql + ",產品規格='" + 產品規格.text + "'";
strsql = strsql + " where id='" + id.text + "'";
me.execsql(strsql);
strsql = "update product set 庫存數量=庫存數量+" + 入庫數量.text + "-" + 原來的值.text + " where 產品名稱='" + 產品名稱.text + "'";
me.execsql(strsql);
button_read_click(sender, e);
刪除資訊
string strsql = "update product set 庫存數量=庫存數量-" + 入庫數量.text + " where 產品名稱='" + 產品名稱.text + "'";
me.execsql(strsql);
string strsql2 = "delete from input where id ='" + id.text + "'";
me.execsql(strsql2);
button_read_click(sender, e);
自定義按鈕引發的事件
int index = convert.toint32(e.commandargument);
if (e.commandname == "select")
原來的值.text = 入庫數量.text;
出庫類似上面的 連線資料庫
2 documents 目錄就是我們可以用來寫入並儲存檔案得地方,一般可通過 nsarray paths nssearchpathfordirectoriesindomains nsdocumentdirectory,nsuserdomainmask,yes nsstring documentsdi...
連線資料庫
1 oracle8 8i 9i資料庫 thin模式 class.forname oracle.jdbc.driver.oracledriver newinstance string url jdbc oracle thin localhost 1521 orcl orcl為資料庫的sid strin...
連線資料庫
public void connection 以上是連線資料庫的乙個方法,以及從資料庫中取到資料後存放在table中.executenonquery 執行sql後,返回乙個整形變數,如果sql是對資料庫記錄進行操作,那麼返回影響的記錄條數。executescalar 執行sql 如果sql語句是se...