I am working on a new Database in Sybase. I am not sure how to run sybase stored procedures from SQL Developer. I have used SQL developer before with Oracle.
my stored procedure look like this. IT is working stored procedure.
create proc stored_proc_name @string_input varchar(20)
as
declare
@ temp_string varchar(20)
select @temp_string from table where conduction
return 0
fail:
....
exec db_schema..stored_proc_name 'string_input'
Output
db_schema..stored_proc_name 'string_input' succeeded.
ITs not printing the actual output. Please help me fix my issue.