C 資料庫操作

2021-08-15 09:25:39 字數 1245 閱讀 4682

public static sqlconnection getsqlconn()

///

/// 通過sql語句取得相應的dataset資料物件

///

///

///

public static dataset query(string sqlstring)

catch (system.exception ex)

finally

}}  

/// 增加操作

/// 往unitword表中插入word與unit的關聯資訊

/// insert into unitword(unitid, wordid, voccode)values(36,247640,'53983d47-ad7a-457a-8fa5-d7ed177bfd38')

///

///

///

public static bool insertunitword(unitword unitword)

}catch (exception ex)

finally

return false;

}/// 刪除操作

/// 通過單詞id刪除單詞及其關聯

///

///

///

public static bool deleteword(int id)

catch (exception ex)

finally

if (result > 1)

else

} /// 修改操作

/// 通過voccode更新乙個單詞

///

///

///

///

///

public static boolean updateword(string mode,string oldspelling,string value,string voccode)

else

}catch (exception ex)

finally

}/// 查詢操作

/// 通過voccode取得乙個單詞

///

///

///

public static word getwordbyvoccode(string voccode)

}catch (exception ex)

finally

return word;

C 資料庫操作

連線 oledbconnection cn new oledbconnection provider microsoft.jet.oledb.4.0 data source c test.mdb cn.open cn.close 讀取資料到datatable oledbconnection cn n...

C 資料庫 資料庫基本操作

executenonquery方法 executescalar方法 executereader方法的區別 executenonquery 執行命令物件的sql語句,返回乙個int型別變數,如果sql語句是對資料庫的記錄進行操作 如記錄的增加 刪除和更新 那麼方法將返回操作所影響的記錄條數。execu...

C 中資料庫操作

using system using system.data using system.data.sqlclient using system.web namespace moban 連線資料庫引數 public string con set 資料庫連線引數 public sqlconnection...