Archive for the ‘Data bases’ Category

A 120.000$ easter egg!

Sunday, April 6th, 2008

Honestly, i'd like it was true :p But this trailer produced by IGN and released on the 1st of April is nothing more than an easter egg... And a big one because the production of that trailer costed 120.000$ !! Here is the link of the Legend of Zelda trailer, enjoy :)

ORA-06553: PLS-382: expression is of wrong type

Friday, March 28th, 2008

When you deal with PL/SQL functions, you have sometimes to create a function returning a boolean. This is an example: CREATE OR REPLACE FUNCTION I_AM_A_HERO ( name VARCHAR2) RETURN BOOLEAN is BEGIN if (name = 'Petrelli') THEN RETURN TRUE; ELSE RETURN FALSE; END IF; END; But if you wan't to execute it like ...