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 :)
Posted in Data bases, Video Games | 1 Comment »
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 ...
Posted in Data bases | 1 Comment »