C
CDM
I have a "Insert Into" statement using the "Values" keyword to add a row to
my table. I'm using variables instead of literal values. Example:
INSERT INTO mytable(Field1, Field2,..Field6) VALUES (Var1,Var2,...Var6)
I'm getting an error message that says, "Expected 6 parameters." I'm
wondering if variables don't work? and, if not, is there some other way to
insert them?
my table. I'm using variables instead of literal values. Example:
INSERT INTO mytable(Field1, Field2,..Field6) VALUES (Var1,Var2,...Var6)
I'm getting an error message that says, "Expected 6 parameters." I'm
wondering if variables don't work? and, if not, is there some other way to
insert them?