I am trying to insert into a database. I am using the code below. When I run the code I get the error message also below.
It is my understanding that the command text is only if you are using a sql statement which I am not.
What am I missing? Thanks!
procedure TfDesignMaster.btnAddUserClick(Sender: TObject);
var
userstring,OldValue: string;
begin
with dm do
begin
userstring := CurrentUserName;
OldValue := dbedit23.text;
dsetAddUser.Open;
tbAddUser.Insert;
tbAddUser['JM_User'] := userstring;
tbAddUser['OldValue'] := DBEdit23.Text;
tbAddUser.Post;
end;
end;