Main menu:

Site search

February 2010
M T W T F S S
« Dec   Jun »
1234567
891011121314
15161718192021
22232425262728

Categories

Tags

Blogroll

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 = [...]

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. [...]