Table name:All_Table
I have a string value in string:strdata
A column in Table:login
How can i insert the string value in column"login"?
I tried this following code,but give syntax error msg.
I have a string value in string:strdata
A column in Table:login
How can i insert the string value in column"login"?
I tried this following code,but give syntax error msg.
Code:
strIns = "INSERT INTO All_Table (login) VALUES " & strdata "
Comment