Recent content by Brujo_ADR

  1. B

    Test Window and cursor variables

    hi Scott Mattes: If you are test a program that return a cursor, you can get the data and verify if work correctly. Copy this code and test in a "test window". -- Created on 01-07-2005 by Brujo_ADR DECLARE -- Local variables here TYPE t_cursor IS REF CURSOR; TYPE t_data IS RECORD(...
  2. B

    plsqldoc - how to document package body?

    hi Marco, aim try the last version on pl/sql developer with the last plsqldoc. May be my explication is not so good. Let's try a example: create or replace package PK_TEST is -- 1) PL PR_TEST SPECIFICATION PROCEDURE PR_TEST; end PK_TEST; / create or replace package body PK_TEST is -- 2) PL...
  3. B

    File Saving to UNIX

    Hi Adrian, The pluggin "ftp" to be used in pl/sql developer, transfer file in format ascii (text), check the manual: "All transfers by the FTP Plug-In are done in ASCII mode so cr/lf are converted to the native format of your server.". So, if you are using another program to transfer this files...
  4. B

    plsqldoc - how to document package body?

    first than all (excuse my english) :D second, hi everybody :) :confused: aim using this plug-in (plsqldoc) without problems to document package especification, but, when I try document a package body can't see the comments used by the programmers, how to get this comments? Greetings.
Back
Top