Ad Space 728x90

What is Page Zero / Global Page in Oracle APEX?

Oracle Application Express (APEX) includes a powerful feature called the Global Page, often referred to as Page Zero. This feature functions as a master page within your application, ensuring that certain elements are consistently rendered across multiple pages without the need for repetitive coding. Here’s an in-depth look at what the Global Page is and how it can be effectively used. Understanding the Global Page The Global Page is a unique type of page in Oracle APEX. Unlike standard pages, it does not support processes, validations, or branches. Instead, it serves as a centralized location where you can define components that should appear across multiple pages in your application. ...

August 1, 2024 · 2 min · Ashwini Shalke

What is Page Zero / Global Page in Oracle APEX?

Oracle Application Express (APEX) includes a powerful feature called the Global Page, often referred to as Page Zero. This feature functions as a master page within your application, ensuring that certain elements are consistently rendered across multiple pages without the need for repetitive coding. Here’s an in-depth look at what the Global Page is and how it can be effectively used. Understanding the Global Page The Global Page is a unique type of page in Oracle APEX. Unlike standard pages, it does not support processes, validations, or branches. Instead, it serves as a centralized location where you can define components that should appear across multiple pages in your application. ...

August 1, 2024 · 2 min · Ashwini Shalke

Control Transfer Statements in swift- `continue, break, fallthrough in swift

In this article, we will look at the continue, break, fallthrough keywords in swift Continue: A continue statement ends program execution of the current iteration of a loop statement and move to next iteration. Ex: Increment the values of odd number in the array func increment(array: [Int]) -> [Int] { var output: [Int] = [] for number in array { ///Check if value is even if number % 2 == 0 { ///number append to output array and move to next iteration output.append(number) continue } ///This statement is skipped for even number output.append(number + 1) } return output } ...

May 22, 2024 · 2 min · Anilkumar Kotur

Control Transfer Statements in swift- `continue, break, fallthrough in swift

In this article, we will look at the continue, break, fallthrough keywords in swift Continue: A continue statement ends program execution of the current iteration of a loop statement and move to next iteration. Ex: Increment the values of odd number in the array func increment(array: [Int]) -> [Int] { var output: [Int] = [] for number in array { ///Check if value is even if number % 2 == 0 { ///number append to output array and move to next iteration output.append(number) continue } ///This statement is skipped for even number output.append(number + 1) } return output } ...

May 22, 2024 · 2 min · Anilkumar Kotur
Ad Space 728x90

What is Stored Procedure in SQL

Imagine you’re baking a cake, and you have a recipe written down on a piece of paper. This recipe contains all the steps you need to follow to bake the cake, from mixing the ingredients to putting it in the oven. A stored procedure in SQL is like that recipe — it’s a set of instructions stored in the database that you can execute whenever you need to perform a specific task or set of tasks. ...

April 11, 2024 · 2 min · Ashwini Shalke

What is Stored Procedure in SQL

Imagine you’re baking a cake, and you have a recipe written down on a piece of paper. This recipe contains all the steps you need to follow to bake the cake, from mixing the ingredients to putting it in the oven. A stored procedure in SQL is like that recipe — it’s a set of instructions stored in the database that you can execute whenever you need to perform a specific task or set of tasks. ...

April 11, 2024 · 2 min · Ashwini Shalke

Adding a Custom Button with Delete Functionality — Oracle APEX Interactive Grid

To begin, let’s familiarize ourselves with the layout of the Interactive Grid toolbar. The toolbar is divided into seven distinct sections, each serving a specific function. Understanding this layout is crucial as we’ll use it to strategically assign our custom buttons. Here’s an overview of these sections: Step by step guide : Navigate to your Oracle APEX application and locate the page containing the Interactive Grid where you want to add the custom button. ...

August 9, 2024 · 3 min · Ashwini Shalke
Ad Space 728x90

Adding a Custom Button with Delete Functionality — Oracle APEX Interactive Grid

To begin, let’s familiarize ourselves with the layout of the Interactive Grid toolbar. The toolbar is divided into seven distinct sections, each serving a specific function. Understanding this layout is crucial as we’ll use it to strategically assign our custom buttons. Here’s an overview of these sections: Step by step guide : Navigate to your Oracle APEX application and locate the page containing the Interactive Grid where you want to add the custom button. ...

August 9, 2024 · 3 min · Ashwini Shalke

Class vs structure in Swift

In this article, we will learn about classes and Structs, the Difference between classes and structs and common features. Class Classes are reference types. It means that if you assign an instance of the class to a variable, it will hold only the reference to the instance and not the copy. class Person { var name: String init(name: String) { self.name = name } } var ceo = SomeClass(name: “steve”) var newCeo = ceo //ceo and newCeo now reference the same instance! newCeo.name = “Tim” ...

May 22, 2024 · 2 min · Anilkumar Kotur

Class vs structure in Swift

In this article, we will learn about classes and Structs, the Difference between classes and structs and common features. Class Classes are reference types. It means that if you assign an instance of the class to a variable, it will hold only the reference to the instance and not the copy. class Person { var name: String init(name: String) { self.name = name } } var ceo = SomeClass(name: “steve”) var newCeo = ceo //ceo and newCeo now reference the same instance! newCeo.name = “Tim” ...

May 22, 2024 · 2 min · Anilkumar Kotur
Ad Space 728x90
Ad Space 728x90