29. juni 2014 - 14:09Der er
11 kommentarer og 1 løsning
Update database.
Hej Følgende kode. Dim dbProvider As String Dim dbSource As String Dim con As New OleDb.OleDbConnection Dim ds As New DataSet Dim da As OleDb.OleDbDataAdapter Dim sql As String Dim x As String dbProvider = "PROVIDER=Microsoft.ACE.OLEDB.12.0;" dbSource = "Data Source = " & Form1.Label3.Text con.ConnectionString = dbProvider & dbSource con.Open() sql = "SELECT * FROM bruger" da = New OleDb.OleDbDataAdapter(sql, con) da.Fill(ds, "passwords") x = ds.Tables("passwords").Rows(Form1.ComboBox1.SelectedIndex).Item(2) If x = TextBox1.Text Then If TextBox2.Text = TextBox3.Text Then 'gem nyt pass Dim cb As New OleDb.OleDbCommandBuilder(da)
If TextBox2.Text = TextBox3.Text Then 'gem nyt pass Dim cb As New OleDb.OleDbCommandBuilder(da) da.UpdateCommand = cb.GetUpdateCommand ds.Tables("passwords").Rows(Form1.ComboBox1.SelectedIndex).Item(2) = TextBox2.Text da.Update(ds, "passwords")
nå nu virker det, ændrede bare mine database felter navne til noget andet,, havde brugt "user" og "passwords". da de blev ændret til noget andet virkede det.
Synes godt om
Ny brugerNybegynder
Din løsning...
Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.