Introduction to Programming Languages

Programming languages are the backbone of all software development. Whether you’re building a website, a mobile app, a database system, or an automation tool โ€” the language you use plays a huge role in how you design, build, and run your software.

Each language helps you:

  • Structure your logic

  • Work with data

  • Interact with systems (like databases or servers)

Some of the most popular programming languages include:

  • Java โ€“ Great for building large-scale applications

  • C++ โ€“ Powerful and fast, often used in system software and games

  • PL/SQL โ€“ Perfect for working with Oracle databases

  • Visual Basic โ€“ Used in desktop applications and business tools

Each language supports a different style of programming, known as a programming paradigm.

What Are Programming Paradigms?

A programming paradigm is a way of thinking about and organizing your code. Think of it like different approaches to solving a problem.

Two of the most common paradigms are:

  1. Procedural Programming

  2. Object-Oriented Programming (OOP)

Each has its own strengths and is better suited for certain types of tasks.

Procedural Programming Languages

Procedural programming is like writing a step-by-step recipe. It focuses on functions or procedures that run in a specific order.

Key Features:

  • Code runs top to bottom, unless changed by loops or conditions

  • Focuses on functions and modular code

  • Great for beginners โ€“ simple and easy to follow

Examples of Procedural Languages:

  • PL/SQL โ€“ Used in Oracle for backend logic

  • Visual Basic โ€“ Common for desktop tools and automation

Example (PL/SQL):

BEGIN
   DBMS_OUTPUT.PUT_LINE('Hello from PL/SQL!');
END;

Hybrid Language: PL/SQL as Both Procedural & Object-Oriented

Originally, PL/SQL was fully procedural. But with Oracle 8 and later versions (like 9i and 10g), Oracle added support for object-oriented features. This means you can now use PL/SQL for both structured logic and object-based design.

Object-Oriented Features in PL/SQL:

  • Create custom object types

  • Define methods (procedures/functions) inside objects

  • Support for inheritance (with some limitations)

Example (Object Type in PL/SQL):

CREATE TYPE book_t AS OBJECT (
    title   VARCHAR2(100),
    price   NUMBER,
    MEMBER PROCEDURE display_info
);
/

CREATE TYPE BODY book_t AS
    MEMBER PROCEDURE display_info IS
    BEGIN
        DBMS_OUTPUT.PUT_LINE('Title: ' || title || ', Price: ' || price);
    END;
END;
/

DECLARE
    my_book book_t := book_t('PL/SQL Basics', 299);
BEGIN
    my_book.display_info;
END;
/

This example creates a book_t object type with a procedure to display its dataโ€”demonstrating PL/SQL's object-oriented capabilities.

Object-Oriented Programming (OOP)

Languages like Java and C++ are based on the Object-Oriented Programming paradigm. This style is perfect for building large and complex systems.

Core Concepts of OOP:
  • Encapsulation โ€“ Keep data and methods together

  • Inheritance โ€“ Reuse code by creating relationships between classes

  • Polymorphism โ€“ Use one interface for multiple forms (e.g., method overloading)

  • Abstraction โ€“ Hide complex logic behind simple interfaces

OOP makes it easier to:

  • Build modular and reusable code

  • Maintain and scale large projects

  • Organize your logic in a real-world-like structure

Conclusion

Understanding the difference between procedural and object-oriented languages is critical for choosing the right language for your project. While Java and C++ let you build modular and reusable components, languages like PL/SQL still shine when it comes to structured data processingโ€”especially in Oracle databases.

As programming continues to evolve, hybrid approaches (like object-oriented PL/SQL) allow developers to benefit from both worldsโ€”offering structure and flexibility.

Scroll to Top