Hi,
I hope somebody can help me with my insert problem. I have this table called tbl_currency and one of the fields is called currency (not to smart I know).
I want to add a new currency by executing an insert statement:
INSERT INTO tbl_currency (currency) values ('" & var$ & "');"
This statement does not work becuase of the reserved word currency. So I changed it to:
INSERT INTO tbl_currency ('currency') values ('" & var$ & "');"
Now I get the following error: 3127
The statement contains the following unknown fieldname: currency blah blah.
I am sure I typed the name correctly so the field does exist.
Anybody know how to solve this?
Thanks in advance.
W.
I hope somebody can help me with my insert problem. I have this table called tbl_currency and one of the fields is called currency (not to smart I know).
I want to add a new currency by executing an insert statement:
INSERT INTO tbl_currency (currency) values ('" & var$ & "');"
This statement does not work becuase of the reserved word currency. So I changed it to:
INSERT INTO tbl_currency ('currency') values ('" & var$ & "');"
Now I get the following error: 3127
The statement contains the following unknown fieldname: currency blah blah.
I am sure I typed the name correctly so the field does exist.
Anybody know how to solve this?
Thanks in advance.
W.