declare
v_db varchar2(255);
v_conn EXEC_SQL.ConnType;
v_cur EXEC_SQL.CursType;
al_btn number;
begin
--v_db := 'a/a@ODBC:health'; --'test/test@ODBC:UG2000';
v_db := 'test/test@ODBC:UG2000';
v_conn := EXEC_SQL.OPEN_CONNECTION(v_db);
if EXEC_SQL.IS_CONNECTED(v_conn) then
al_btn := show_alert('success');
else al_btn := show_alert('failure');
end if;
End;
Hi all ,
I am getting this error when i try to execute the above statments.
Ora-306500