I was learning about bind variables in pl/sql and tried to execute the following code on oracle 10g database
VARIABLE v_bind1 VARCHAR2(10);
EXEC :v_bind1:='shweta';
when i executed it, one pop-up asking for bind variable came as shown in the picture screenshot of pop up box
Then I entered the value 'shweta' in it and submitted, but it shows invalid sql statement.
what should I enter in the pop-up box, so that my program execute successfully?