PL/SQL Data Types

In the previous tutorial, you learnt about how to write and run Hello World program in PL/SQL programming language. In this tutorial you will learn about various data types used in PL/SQL. PL/SQL Data Types Every programming language has built-in data types which are used for declaring variables and many other related tasks. Variable is …

PL/SQL Data Types Read More »

Hello World Program in PL/SQL

So, now that you know something very basic about PL/SQL programming language, let’s get our hands dirty into coding. Lets start with the very first program for printing hello world to get the basic cleared. Open your SQL terminal and first of all type. Set serveroutput on; Type the above command before executing any SQL …

Hello World Program in PL/SQL Read More »

String in Java

String in Java is a sequence of characters. In other programming languages like C and C++, string is implemented as array of characters while in Java string is implemented as object of String class. String class is defined in java.lang package. StringBuffer and StringBuilder class is also used to create string in Java. We will …

String in Java Read More »

Introduction to PL/SQL Programming

PL/SQL Basics – Introduction to PL/SQL Programming PL/SQL stands for Procedural Language/Structured Query Language. It is an extension of Structured Query Language (SQL) developed by Oracle Corporation. PL/SQL is a database programming language which is used to modify and manipulate the database or a complete database application. PL/SQL provides support for developing Web Applications and …

Introduction to PL/SQL Programming Read More »