Archive for February, 2010
A Simple PL/SQL Tokenizer
DECLARE tokenString VARCHAR2 (256) := ‘Jim,Jerry,Jordan’; tokenLength NUMBER := 0; tokenDelimiter VARCHAR2 (1) := ‘,’; tokenChar VARCHAR2 (1) := ”; tokenIzed VARCHAR (30) := ”;BEGIN SELECT LENGTH (tokenString) INTO tokenLength FROM DUAL;
FOR i IN 1 .. tokenLength LOOP SELECT SUBSTR (tokenString, i, 1) INTO tokenChar FROM DUAL;
IF tokenChar = tokenDelimiter OR i = [...]
Posted: February 12th, 2010 under Database.
Comments: none
Tech Republic: Spamaholics
I read articles on Tech Republic from time to time. They’re . . . . OK. But I don’t remember signing up for this kind of email notification. You’d think a self proclaimed tech site would show a little more ethical behavior. Just goes to show you, their opinions are motivated. [...]
Posted: February 11th, 2010 under Uncategorized.
Comments: none