1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
'コネクションストリングを用意 Dim UserID As String = "Admin" Dim Password As String = "" Dim cnctStr As String Dim MDBFile As String = "C:\Program Files\NXTM\KeywordAnalyzer\base.mdb" cnctStr = "Provider=""Microsoft.Jet.OLEDB.4.0"";" cnctStr &= "Data Source=""" & MDBFile & """;" cnctStr &= "User ID=" & UserID & ";" cnctStr &= "Jet OLEDB:Database Password=" & Password 'データベースとの接続関係を設定 Dim db As New System.Data.OleDb.OleDbConnection db.ConnectionString = cnctStr 'DELETEコマンドを作成 Dim cmnd As New System.Data.OleDb.OleDbCommand cmnd.Connection = db cmnd.CommandText = "DELETE FROM PurchaseHistory" 'データベースをオープン db.Open() 'コマンドを実行 cmnd.ExecuteNonQuery() 'データベースをクローズ db.Close() |
コメント