Thread: OWC Sunday 3/11
View Single Post
  #1  
Old 03-10-2007, 08:43 AM
Technochick's Avatar
Technochick Technochick is offline
Member
 
Join Date: Jun 2006
Location: Gulfport, FL
Posts: 70
Smile OWC Sunday 3/11

I didn't do as well as I had hoped last weekend and I'm headed to OWC again tomorrow. I'm so goofy, I can't get my left foot to lead

Since I'm headed out there, it's probably going to blow again so prepare yourselves for a great day of riding!

I have room for one more if anyone else wants to go.
__________________
(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