Set Custom CSS inline property in OAF
Import the below library import oracle.cabo.style.CSSStyle; Create new CSS Style CSSStyle noteStyle = new CSSStyle(); Add the Style propert......
2 Years Ago
String Functions and Operators
The concatenation operator (||) is used for joining two strings. String functions are: ASCII(x); CHR(x); CONCAT(x, y); INITCAP(x); INSTR(x, ......
2 Years Ago
PLSQL - LOOP
LOOP: LOOP statements; END LOOP; EXIT: There are two forms of the EXIT. EXIT EXIT-WHEN LOOP statements; IF THEN EXIT; -- exit ......
2 Years Ago
PLSQL - Nested Loops
Syntax: DECLARE BEGIN LOOP EXIT WHEN TRUE LOOP EXIT WHEN TRUE END LOOP END LOOP END Example for Nested Loop: declare v_de......
2 Years Ago
PLSQL - Difference between While and Loop
While Loop v/s Basic Loop While loop will execute only when condition evaluates true declare x number; Begin x := 1; while x > 15 Lo......
2 Years Ago
PLSQL - While Loop
WHILE : We can use While loop to evaluate before each iteration Statement executed and control resumes at the top of the loop when conditi......
2 Years Ago