Skip to Main Content

Java Development Tools

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

ELException: java.lang.NullPointerException in ADF Jdeveloper

Eugen LangNov 30 2022

Hello everybody! I am getting this error when executing a sql request in adf.
Help me please, has anyone else experienced this? Here error ELException, working in adf
1.png2.png

This post has been answered by Timo Hahn on Dec 1 2022
Jump to Answer

Comments

Gary Graham-Oracle

From a worksheet, using Run Script (F5), you can do something like this if connected to the seeded HR schema:

spool C:\Temp\countries.lst

select /*csv*/ * from countries;

spool off

spool C:\Temp\departments.lst

select /*csv*/ * from departments;

spool off

spool c:\Temp\employees.lst

select /*csv*/ * from employees;

spool off

Hope this helps,

Gary

1 - 1

Post Details