View Single Post
  #1  
Old 03-01-2007, 04:11 PM
Technochick's Avatar
Technochick Technochick is offline
Member
 
Join Date: Jun 2006
Location: Gulfport, FL
Posts: 70
Default No Wind Saturday ~ OWC Anyone?

I'm headed up to OWC on Saturday to do some desperately needed work on my board skills.

Since there's not going to be any wind, I figured I'd mention it here in case we want to get a group together.


Anyone interested?
__________________
(it's a script to create an ASCII chart)

SET SERVEROUTPUT ON SIZE 1000000
DECLARE
y number := 31;
asciiname VARCHAR2(30);
BEGIN
FOR x in 31..126
LOOP
select chr(y)
INTO asciiname
FROM dual;
dbms_output.put_line('chr('||Y||') = '||' '||asciiname);
Y := y + 1;
END LOOP;
END;
/
Reply With Quote