HelloRacoon
HelloRacoon

Reputation: 97

I can't use binding variable in datagrip

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??

working in sql*plus

Upvotes: 0

Views: 936

Answers (1)

moscas
moscas

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

Related Questions