以下代码产生错误,说{"Keyword not supported: 'provider'."}
我无法更新数据库表。
con.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=E:\Comp-296\Project1\Project1\Game_time.mdb"
答案 0 :(得分:0)
我假设您正在使用SqlClient库,请尝试使用OleDB:
Imports System.Data.OleDb
Dim con As New OleDb.OleDbConnection
con.ConnectionString = "yourconstring"