Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: PL/SQL Editor.

RE: PL/SQL Editor.

From: Gabriel Aragon <gabriel_gap_at_YAHOO.COM>
Date: Thu, 15 Aug 2002 09:48:47 -0800
Message-ID: <F001.004B67CD.20020815094847@fatcity.com>


TOAD is a very good one with a lot of useful options like commands configuration:

you type: crbl <ctrl><space>
you get:

 DECLARE
   CURSOR c1 IS

      SELECT FROM WHERE;
   c1rec c1%ROWTYPE;
BEGIN
   OPEN c1;
   LOOP

      FETCH c1 INTO c1rec;
      EXIT WHEN c1%NOTFOUND;

   END LOOP;
   CLOSE c1;
END; also you can use sqlnavigator and sql-programmer, there are a lot of very good tools..

Gabriel


"Any dream worth having is a dream worth fighting for"(Cualquier sueño que valga la pena tener, es un sueño por el que vale la pena luchar)Charles Xavier

Do You Yahoo!?
HotJobs - Search Thousands of New Jobs
http://www.hotjobs.com
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Gabriel Aragon
  INET: gabriel_gap_at_yahoo.com

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
Received on Thu Aug 15 2002 - 12:48:47 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US