Hi ...
I'm back with my old problem ...
PlsqlDoc Plug-In error:
Could not generate documentation for ...
CreateSession failed."
... just because I will really need that feature ...
The error occurs only when I'm trying to generate the documentation for a table ... works just fine for...
Hi,
using beautifier (even with the default settings) on this king of source code makes the second line of the comment do indent progresivly to the right ....
DECLARE
myVal integer;
BEGIN
SELECT aVal
into myVal
FROM MyTable
WHERE x = y
AND /* this is the first comment line...
It is possible to create some mini command line application with some pice of PLSQL Dev.
I'd love to have the export tables tool or export to xls/html/... of a query or .... as an mini separate batch applications (witch can be configurated by an .ini file)
Tx,
Stefan
In order to bypass this (ORACLE!!!!) error i'm asking if it is possible to add the debug information (if desired) to the package after the compilation.
Tx,
Stefan
Getting the same with:
DECLARE
FUNCTION get_new_id RETURN VARCHAR2 IS
res VARCHAR2(12);
BEGIN
SELECT to_char(myseq .NEXTVAL, '000000000000') INTO res FROM dual;
RETURN res;
END;
BEGIN
dbms_output.put_line(get_new_id);
END;
Shtefan.
Neither the new version not work ... maybe I'm doing sonething wrong .... this is a stupid example of a table ...
-- Create table
create table AAAA(C1 NUMBER,C2 NUMBER)
tablespace PERSONAL_TBS pctfree 10 pctused 40
initrans 1 maxtrans 255 storage
(initial 64K minextents 1 maxextents...