Edit sql table from vba

dummies

New Member
Joined
Jul 10, 2020
Messages
28
Office Version
  1. 2016
Platform
  1. Windows
I have table in sql. So how do i edit when button is clicked in vba user form.
(2 textbox(userid and password) and a combo box which contains value .
Sql table should be edit when i enter value from vba.
(Connection to sql is done) but when i write sql code in vba, i get a error saying user pass is invalid or unrefined.
My code goes like this

Dim pass as string
Dim id as string
Dim cb as string

Pass=txtb1.textbox
Id= txtb2. Textbox
Cb=combobox.value
Conn.open(Connection code)

Set rs=conn.Execute("update mlogin set loginid='"&id&"'loginpass='"pass&"'where loginvalue="&cb)
Conn.close
Set conn=nothing


Thank you inadvance
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.

Forum statistics

Threads
1,213,489
Messages
6,113,949
Members
448,534
Latest member
benefuexx

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top