SQL Developer Automatic Connection Definition
When creating users in Oracle , you then have to create a connection in SQL Developer, repeating the information.So you would run something like this in the SQL Worksheet
CREATE USER dermo IDENTIFIED BY dermo;
GRANT CONNECT,RESOURCE TO dermo;
Then you would have to create a SQL Developer connection.
CREATE CONNECTION connectionname(CREATE USER username IDENTIFIED BY password);
GRANT CONNECT,RESOURCE to username;