Reputation: 97
I'm using datagrip with oracle 11g.
VARIABLE TEST_VALUE NUMBER
BEGIN
:TEST_VALUE := 100;
end;
PRINT TEST_VALUE;
then pop up enter parameters and execute window.
how to use binding variable in datagrip??
Upvotes: 0
Views: 936
Reputation: 10345
This is SQL Plus dialect. Unfortunately, DataGrip doesn't support running SQL Plus statements, so it won't be run anyway.
Upvotes: 1