Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Simple Hello World using PL/SQL
06-03-2009, 10:14 AM
Post: #1
Simple Hello World using PL/SQL
Procedural Level/Structured Query Language is a feature that comes with Oracle DBMS, which allows developers to write procedural programs which runs on the DBMS server itself. Using PL/SQL we can eliminate the time and performance issues we would face if we are to implement the logics that involve DBMS queries.

The following code snippet shows a simple PL/SQL which prints Hello, World.

DECLARE
message varchar(100);
BEGIN
message := 'Hello, World!';
dbms_output.put_line(message);
END;

Shazin Sadakath
Bsc (Hons) Software Engineering (UG)
SCJP 1.5
Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump:


Contact Us | Coder Passion | Return to Top | Return to Content | Lite (Archive) Mode | RSS Syndication | Site Map