SQL Developer does not automatically commit transactions by default

SQL Developer does not automatically commit transactions by default

The software SQL Developer does not perform SQL submission when performing database data modification operations.

SQL Developer does not automatically submit by default and must be submitted manually.

like:

insert into mytable (id,name)
		values (1,'tom');
		
commit;

Guess you like

Origin blog.csdn.net/qq_43203949/article/details/131574896