Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

spl blocks in informix

Status
Not open for further replies.

penzk001

Technical User
Mar 11, 2003
82
MT
Can anyone tell me convert the following pl/sql block to informix spl.

declare
db v$database.name%TYPE;
begin
dbms_output.enable (99999);
select name into db from v$database;
dbms_output.put_line (db);
end;

Is there a good pdf for SPL ?
 
Hi,

The Oracle SP that you have posted seems to be specific and native to Oracle SPL, hence I may not be in a position to suggest a solution.

However, you may look at the link below, which points to an official documentation on informix spl in pdf format. The title of the e-book is Informix Guide to SQL and the 8th chapter deals with Creating and Using Stored Procedures.


Regards,
Shriyan

"Man who knows, knows, he knows nothing!"
 
Thanks for your help, as I thought that informix supported a SPL structures outside the create procedure clause.


Thanks again
Kenneth
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top