views:

20

answers:

1

Is there a function to format a text in Oracle WebForms like printf in PHP?

A: 

No, you just have to format the text yourself e.g.

text := 'Employee ' || to_char(:blk.empno) || ' earns $' 
        || to_char(:blk.sal,'999999.99');
Tony Andrews