Reputation: 123
I am using Run SQL Command Line to insert my data, the script ask below.
INSERT INTO USERMASTER (USERID,USERPWD,USERNAME,USERPOSITION,USERACCESSRIGHTS,USERSTATUS,CREATEUSERID) VALUES ('admin','nVzfJ0sOjj/EFU700exL6A==','Admin','Administrator','Non-Administrator','1', 'admin');
but when I open my database by using toad and log in the user and see, the data is not insert into the table. May I know where is the place goes wrong?
image below is the output in sql command.
Upvotes: 0
Views: 806
Reputation: 64
what about commit. Is autocommit on?
or add 'commit' after your insert statement
Upvotes: 1