I'm having trouble getting data from the bank. I can insert into my bank with this code
Dim comandosql As OleDbCommand
cadastro = "Insert INTO usuarios (usuario, senha) Values ('" & TextBox1.Text & "','" & TextBox2.Text & "')"
comandosql = New OleDbCommand(cadastro, conexao)
comandosql.ExecuteNonQuery()
MsgBox("Dados inseridos com sucesso")
Now I wanted to select the data already registered, for example look in the table users "code" = 1 and select the "user" and "password" of this code and make it appear in textbox3 and textbox4
Could someone help me?