<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: PLDOC, documenting your PL/SQL directly from the database</title>
	<atom:link href="http://technology.amis.nl/2005/07/25/pldoc-documenting-your-plsql-directly-from-the-database1/feed/" rel="self" type="application/rss+xml" />
	<link>http://technology.amis.nl/2005/07/25/pldoc-documenting-your-plsql-directly-from-the-database1/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=pldoc-documenting-your-plsql-directly-from-the-database1</link>
	<description></description>
	<lastBuildDate>Tue, 11 Jun 2013 22:09:58 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Marcos</title>
		<link>http://technology.amis.nl/2005/07/25/pldoc-documenting-your-plsql-directly-from-the-database1/#comment-2265</link>
		<dc:creator>Marcos</dc:creator>
		<pubDate>Thu, 17 Nov 2005 09:35:14 +0000</pubDate>
		<guid isPermaLink="false">/?p=679#comment-2265</guid>
		<description><![CDATA[Hi Elsabe
Are you trying to run it against an Oracle database version 9 and above?
Do you have access to the dbms_metadata package?

I checked the version by downloading it from the link and am able to run it without problems against my version 9 database.

Marcos]]></description>
		<content:encoded><![CDATA[<p>Hi Elsabe<br />
Are you trying to run it against an Oracle database version 9 and above?<br />
Do you have access to the dbms_metadata package?</p>
<p>I checked the version by downloading it from the link and am able to run it without problems against my version 9 database.</p>
<p>Marcos</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elsabe</title>
		<link>http://technology.amis.nl/2005/07/25/pldoc-documenting-your-plsql-directly-from-the-database1/#comment-2264</link>
		<dc:creator>Elsabe</dc:creator>
		<pubDate>Tue, 15 Nov 2005 10:19:13 +0000</pubDate>
		<guid isPermaLink="false">/?p=679#comment-2264</guid>
		<description><![CDATA[hi there,

thanks for the db functionality! i hope this turns out to be what we need to make our packages
available.

i also ran into a problem retrieving the pl/sql packages from the database.
the connection seems fine though, as i first had a typo on the password and then it said
there was a problem with the un/passwd.

the error message i get is (note: connection string and un/passwd changed for security reasons):

C:\Integrator\PLDoc\PLDoc3\pldoc&gt;call pldoc_its.bat -doctitle &quot;ITS PLSql&quot; -url
 jdbc:oracle:thin:@cobra.its.co.za:1522:dev -user xxx -password yyy -d testITSfin -sql F%

PLDoc version: (experimental)
Exception in thread &quot;main&quot; java.lang.NoClassDefFoundError: sqlj/runtime/ref/Conn
ectionContextImpl
        at net.sourceforge.pldoc.PLDoc.run(PLDoc.java:174)
        at net.sourceforge.pldoc.PLDoc.main(PLDoc.java:86)

at line 174 in PLDoc.java is :

1:        DbmsMetadata dbmsMetadata = new DbmsMetadata(conn);

this is after the setup of the statement:

1:	  pstmt = conn.prepareStatement(&quot;SELECT  object_name &quot;+
2:                                      &quot;FROM    all_objects &quot;+
3:                                      &quot;WHERE   owner = ? &quot;+
4:                                      &quot;AND     object_name LIKE ?&quot;+
5:                                      &quot;AND     object_type = &#039;PACKAGE&#039;&quot;+
6:                                      &quot;ORDER BY &quot;+
7:                                      &quot;        object_name&quot;);

should there not be a space at the end of line 4 and 5 before the double-quote?  e.g.:

1:	  pstmt = conn.prepareStatement(&quot;SELECT  object_name &quot;+
2:                                      &quot;FROM    all_objects &quot;+
3:                                      &quot;WHERE   owner = ? &quot;+
4:                                      &quot;AND     object_name LIKE ? &quot;+
5:                                      &quot;AND     object_type = &#039;PACKAGE&#039; &quot;+
6:                                      &quot;ORDER BY &quot;+
7:                                      &quot;        object_name&quot;);

is there not perhaps another version of this software, which is not available from this link above?

regards and thanks.]]></description>
		<content:encoded><![CDATA[<p>hi there,</p>
<p>thanks for the db functionality! i hope this turns out to be what we need to make our packages<br />
available.</p>
<p>i also ran into a problem retrieving the pl/sql packages from the database.<br />
the connection seems fine though, as i first had a typo on the password and then it said<br />
there was a problem with the un/passwd.</p>
<p>the error message i get is (note: connection string and un/passwd changed for security reasons):</p>
<p>C:\Integrator\PLDoc\PLDoc3\pldoc>call pldoc_its.bat -doctitle &#8220;ITS PLSql&#8221; -url<br />
 jdbc:oracle:thin:@cobra.its.co.za:1522:dev -user xxx -password yyy -d testITSfin -sql F%</p>
<p>PLDoc version: (experimental)<br />
Exception in thread &#8220;main&#8221; java.lang.NoClassDefFoundError: sqlj/runtime/ref/Conn<br />
ectionContextImpl<br />
        at net.sourceforge.pldoc.PLDoc.run(PLDoc.java:174)<br />
        at net.sourceforge.pldoc.PLDoc.main(PLDoc.java:86)</p>
<p>at line 174 in PLDoc.java is :</p>
<p>1:        DbmsMetadata dbmsMetadata = new DbmsMetadata(conn);</p>
<p>this is after the setup of the statement:</p>
<p>1:	  pstmt = conn.prepareStatement(&#8220;SELECT  object_name &#8220;+<br />
2:                                      &#8220;FROM    all_objects &#8220;+<br />
3:                                      &#8220;WHERE   owner = ? &#8220;+<br />
4:                                      &#8220;AND     object_name LIKE ?&#8221;+<br />
5:                                      &#8220;AND     object_type = &#8216;PACKAGE&#8217;&#8221;+<br />
6:                                      &#8220;ORDER BY &#8220;+<br />
7:                                      &#8221;        object_name&#8221;);</p>
<p>should there not be a space at the end of line 4 and 5 before the double-quote?  e.g.:</p>
<p>1:	  pstmt = conn.prepareStatement(&#8220;SELECT  object_name &#8220;+<br />
2:                                      &#8220;FROM    all_objects &#8220;+<br />
3:                                      &#8220;WHERE   owner = ? &#8220;+<br />
4:                                      &#8220;AND     object_name LIKE ? &#8220;+<br />
5:                                      &#8220;AND     object_type = &#8216;PACKAGE&#8217; &#8220;+<br />
6:                                      &#8220;ORDER BY &#8220;+<br />
7:                                      &#8221;        object_name&#8221;);</p>
<p>is there not perhaps another version of this software, which is not available from this link above?</p>
<p>regards and thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elsabe</title>
		<link>http://technology.amis.nl/2005/07/25/pldoc-documenting-your-plsql-directly-from-the-database1/#comment-2263</link>
		<dc:creator>Elsabe</dc:creator>
		<pubDate>Tue, 15 Nov 2005 09:56:31 +0000</pubDate>
		<guid isPermaLink="false">/?p=679#comment-2263</guid>
		<description><![CDATA[Hi there,

Thanks for the added functionality..

I am also experiencing a problem getting the PL/SQL from the database.  (note: in message below, I have
changed the connection string and username + password for security reasons).


C:\Integrator\PLDoc\PLDoc3\pldoc&gt;call pldoc_its.bat -doctitle &quot;ITS PLSql&quot; -url
 jdbc:oracle:thin:@cobra.its.co.za:1523:dev -user xxx -password yyy -d testITSfin -sql F

PLDoc version: (experimental)
Exception in thread &quot;main&quot; java.lang.NoClassDefFoundError: sqlj/runtime/ref/ConnectionContextImpl
        at net.sourceforge.pldoc.PLDoc.run(PLDoc.java:174)
        at net.sourceforge.pldoc.PLDoc.main(PLDoc.java:86)

It seems like it does connect, as I typed the password wrong at first and then it complained about
the username/password.
The code at line 174 in PLDoc.java is:

1:	  pstmt = conn.prepareStatement(&quot;SELECT  object_name &quot;+
2:                                      &quot;FROM    all_objects &quot;+
3:                                      &quot;WHERE   owner = ? &quot;+
4:                                      &quot;AND     object_name LIKE ?&quot;+
5:                                      &quot;AND     object_type = &#039;PACKAGE&#039;&quot;+
6:                                      &quot;ORDER BY &quot;+
7:                                      &quot;        object_name&quot;);

Are there not spaces missing at the end of line 4 and 5? Must it not be:

1:	  pstmt = conn.prepareStatement(&quot;SELECT  object_name &quot;+
2:                                      &quot;FROM    all_objects &quot;+
3:                                      &quot;WHERE   owner = ? &quot;+
4:                                      &quot;AND     object_name LIKE ? &quot;+
5:                                      &quot;AND     object_type = &#039;PACKAGE&#039; &quot;+
6:                                      &quot;ORDER BY &quot;+
7:                                      &quot;        object_name&quot;);

Is there perhaps another version of this code which was not published here?

thanks.]]></description>
		<content:encoded><![CDATA[<p>Hi there,</p>
<p>Thanks for the added functionality..</p>
<p>I am also experiencing a problem getting the PL/SQL from the database.  (note: in message below, I have<br />
changed the connection string and username + password for security reasons).</p>
<p>C:\Integrator\PLDoc\PLDoc3\pldoc>call pldoc_its.bat -doctitle &#8220;ITS PLSql&#8221; -url<br />
 jdbc:oracle:thin:@cobra.its.co.za:1523:dev -user xxx -password yyy -d testITSfin -sql F</p>
<p>PLDoc version: (experimental)<br />
Exception in thread &#8220;main&#8221; java.lang.NoClassDefFoundError: sqlj/runtime/ref/ConnectionContextImpl<br />
        at net.sourceforge.pldoc.PLDoc.run(PLDoc.java:174)<br />
        at net.sourceforge.pldoc.PLDoc.main(PLDoc.java:86)</p>
<p>It seems like it does connect, as I typed the password wrong at first and then it complained about<br />
the username/password.<br />
The code at line 174 in PLDoc.java is:</p>
<p>1:	  pstmt = conn.prepareStatement(&#8220;SELECT  object_name &#8220;+<br />
2:                                      &#8220;FROM    all_objects &#8220;+<br />
3:                                      &#8220;WHERE   owner = ? &#8220;+<br />
4:                                      &#8220;AND     object_name LIKE ?&#8221;+<br />
5:                                      &#8220;AND     object_type = &#8216;PACKAGE&#8217;&#8221;+<br />
6:                                      &#8220;ORDER BY &#8220;+<br />
7:                                      &#8221;        object_name&#8221;);</p>
<p>Are there not spaces missing at the end of line 4 and 5? Must it not be:</p>
<p>1:	  pstmt = conn.prepareStatement(&#8220;SELECT  object_name &#8220;+<br />
2:                                      &#8220;FROM    all_objects &#8220;+<br />
3:                                      &#8220;WHERE   owner = ? &#8220;+<br />
4:                                      &#8220;AND     object_name LIKE ? &#8220;+<br />
5:                                      &#8220;AND     object_type = &#8216;PACKAGE&#8217; &#8220;+<br />
6:                                      &#8220;ORDER BY &#8220;+<br />
7:                                      &#8221;        object_name&#8221;);</p>
<p>Is there perhaps another version of this code which was not published here?</p>
<p>thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marcos</title>
		<link>http://technology.amis.nl/2005/07/25/pldoc-documenting-your-plsql-directly-from-the-database1/#comment-2262</link>
		<dc:creator>Marcos</dc:creator>
		<pubDate>Sun, 06 Nov 2005 16:22:39 +0000</pubDate>
		<guid isPermaLink="false">/?p=679#comment-2262</guid>
		<description><![CDATA[Sorry for the inconvenience.
The error occures the moment the oracle jdbc driver gets registerd. Do you have a valid Oracle driver present in your classpath?

What you could do is the following:
Download JDeveloper 10G and unzip it in the direcory c:\oracle\jdev10
You will now have a directory c:\oracle\jdev10

Place the following syntax in a bat file to start PLDOC. The batfile should reside in the directory PLDoc is located.

@echo off
REM pldoc.bat
REM Resolve the directory of pldoc
set pldir=%~d0%~p0
REM Set your Oracle JDEV home here
set ORACLE_HOME=C:\Oracle\jdev10
REM Set bootclasspath.
REM NB: this is needed to make JDK1.4 use our Xerces version instead of internal parser
set bcp=%pldir%xalan\bin\xalan.jar;%pldir%xalan\bin\xml-apis.jar;%pldir%xalan\bin\xercesImpl.jar
REM Set classpath
REM NB: classpath must contain &quot;.&quot; to be able to locate .xsl files
set cp=%pldir%;%pldir%\pldoc.jar;%ORACLE_HOME%\jdbc\lib\classes12.jar;%ORACLE_HOME%\sqlj\lib\runtime12.jar;%ORACLE_HOME%\sqlj\lib\translator.jar
REM Call PLDoc
java -Xbootclasspath/p:&quot;%bcp%&quot; -cp &quot;%cp%&quot; net.sourceforge.pldoc.PLDoc %*


Start pldoc from the commandline using your command.
Note that the username and the name of the packages are case sensitive.

Hope this helps

Cheers Marcos]]></description>
		<content:encoded><![CDATA[<p>Sorry for the inconvenience.<br />
The error occures the moment the oracle jdbc driver gets registerd. Do you have a valid Oracle driver present in your classpath?</p>
<p>What you could do is the following:<br />
Download JDeveloper 10G and unzip it in the direcory c:\oracle\jdev10<br />
You will now have a directory c:\oracle\jdev10</p>
<p>Place the following syntax in a bat file to start PLDOC. The batfile should reside in the directory PLDoc is located.</p>
<p>@echo off<br />
REM pldoc.bat<br />
REM Resolve the directory of pldoc<br />
set pldir=%~d0%~p0<br />
REM Set your Oracle JDEV home here<br />
set ORACLE_HOME=C:\Oracle\jdev10<br />
REM Set bootclasspath.<br />
REM NB: this is needed to make JDK1.4 use our Xerces version instead of internal parser<br />
set bcp=%pldir%xalan\bin\xalan.jar;%pldir%xalan\bin\xml-apis.jar;%pldir%xalan\bin\xercesImpl.jar<br />
REM Set classpath<br />
REM NB: classpath must contain &#8220;.&#8221; to be able to locate .xsl files<br />
set cp=%pldir%;%pldir%\pldoc.jar;%ORACLE_HOME%\jdbc\lib\classes12.jar;%ORACLE_HOME%\sqlj\lib\runtime12.jar;%ORACLE_HOME%\sqlj\lib\translator.jar<br />
REM Call PLDoc<br />
java -Xbootclasspath/p:&#8221;%bcp%&#8221; -cp &#8220;%cp%&#8221; net.sourceforge.pldoc.PLDoc %*</p>
<p>Start pldoc from the commandline using your command.<br />
Note that the username and the name of the packages are case sensitive.</p>
<p>Hope this helps</p>
<p>Cheers Marcos</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Friedman</title>
		<link>http://technology.amis.nl/2005/07/25/pldoc-documenting-your-plsql-directly-from-the-database1/#comment-2261</link>
		<dc:creator>Mike Friedman</dc:creator>
		<pubDate>Fri, 04 Nov 2005 12:50:19 +0000</pubDate>
		<guid isPermaLink="false">/?p=679#comment-2261</guid>
		<description><![CDATA[Doesn&#039;t seem to work.. please advise

C:\pldoc&gt;call pldoc -url jdbc:oracle:thin:@novadev02:1521:DESIGNER -user DES -pa
ssword des -d testdb -sql I%

PLDoc version: (experimental)
Exception in thread &quot;main&quot; java.lang.NoClassDefFoundError: oracle/jdbc/OracleDri
ver
        at net.sourceforge.pldoc.PLDoc.run(PLDoc.java:159)
        at net.sourceforge.pldoc.PLDoc.main(PLDoc.java:86)]]></description>
		<content:encoded><![CDATA[<p>Doesn&#8217;t seem to work.. please advise</p>
<p>C:\pldoc>call pldoc -url jdbc:oracle:thin:@novadev02:1521:DESIGNER -user DES -pa<br />
ssword des -d testdb -sql I%</p>
<p>PLDoc version: (experimental)<br />
Exception in thread &#8220;main&#8221; java.lang.NoClassDefFoundError: oracle/jdbc/OracleDri<br />
ver<br />
        at net.sourceforge.pldoc.PLDoc.run(PLDoc.java:159)<br />
        at net.sourceforge.pldoc.PLDoc.main(PLDoc.java:86)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Friedman</title>
		<link>http://technology.amis.nl/2005/07/25/pldoc-documenting-your-plsql-directly-from-the-database1/#comment-2260</link>
		<dc:creator>Mike Friedman</dc:creator>
		<pubDate>Fri, 04 Nov 2005 12:49:35 +0000</pubDate>
		<guid isPermaLink="false">/?p=679#comment-2260</guid>
		<description><![CDATA[PLDoc only works if the directory paths it is working with have no spaces in them.]]></description>
		<content:encoded><![CDATA[<p>PLDoc only works if the directory paths it is working with have no spaces in them.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christophe</title>
		<link>http://technology.amis.nl/2005/07/25/pldoc-documenting-your-plsql-directly-from-the-database1/#comment-2259</link>
		<dc:creator>Christophe</dc:creator>
		<pubDate>Mon, 17 Oct 2005 07:15:44 +0000</pubDate>
		<guid isPermaLink="false">/?p=679#comment-2259</guid>
		<description><![CDATA[Well, in fact, I have the same problem... Whereas index.html, application.xml,... are well generated in the &quot;destdir&quot;, it seems that each html for each package is generated in the current directory.

A solution ?
Tks]]></description>
		<content:encoded><![CDATA[<p>Well, in fact, I have the same problem&#8230; Whereas index.html, application.xml,&#8230; are well generated in the &#8220;destdir&#8221;, it seems that each html for each package is generated in the current directory.</p>
<p>A solution ?<br />
Tks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marcos</title>
		<link>http://technology.amis.nl/2005/07/25/pldoc-documenting-your-plsql-directly-from-the-database1/#comment-2258</link>
		<dc:creator>Marcos</dc:creator>
		<pubDate>Wed, 14 Sep 2005 06:10:16 +0000</pubDate>
		<guid isPermaLink="false">/?p=679#comment-2258</guid>
		<description><![CDATA[Hello Richard,
sorry I was not able to answer your question earlier.
It is good to hear you were able to solve your issues.

Marcos]]></description>
		<content:encoded><![CDATA[<p>Hello Richard,<br />
sorry I was not able to answer your question earlier.<br />
It is good to hear you were able to solve your issues.</p>
<p>Marcos</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard Harrison</title>
		<link>http://technology.amis.nl/2005/07/25/pldoc-documenting-your-plsql-directly-from-the-database1/#comment-2257</link>
		<dc:creator>Richard Harrison</dc:creator>
		<pubDate>Sat, 10 Sep 2005 10:30:48 +0000</pubDate>
		<guid isPermaLink="false">/?p=679#comment-2257</guid>
		<description><![CDATA[Hello, well good news I sorted the problem.  I was playing around on XP using the area under my documents which caused the generation of the html files to end up in another area of my disk.  :(  So I simply made sure I was working close to the top of the tree on C:\ and it works fine :)

Nice utility.

Richard.]]></description>
		<content:encoded><![CDATA[<p>Hello, well good news I sorted the problem.  I was playing around on XP using the area under my documents which caused the generation of the html files to end up in another area of my disk.  <img src='http://technology.amis.nl/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />   So I simply made sure I was working close to the top of the tree on C:\ and it works fine <img src='http://technology.amis.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Nice utility.</p>
<p>Richard.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard Harrison</title>
		<link>http://technology.amis.nl/2005/07/25/pldoc-documenting-your-plsql-directly-from-the-database1/#comment-2256</link>
		<dc:creator>Richard Harrison</dc:creator>
		<pubDate>Fri, 09 Sep 2005 10:35:49 +0000</pubDate>
		<guid isPermaLink="false">/?p=679#comment-2256</guid>
		<description><![CDATA[Hi, I have been trying this out but it is not working correctly for me and I need some help. I have dl your version and the one of sourceforge and they both have the same problem on my setup.  Mainly they parse the pk header and makes the basic frame up, with the pk name but the link does not go to the next html page, the detail page is not generated.  Any ideas whats wrong?  It says generating &lt;unit&gt;.html which probably supposed to be the detail pages. Oh and of course the test samples do not work either.  the list of packages link to missing files.  Any help glady appreciated.

Thanks.

Richard.&lt;/unit&gt;]]></description>
		<content:encoded><![CDATA[<p>Hi, I have been trying this out but it is not working correctly for me and I need some help. I have dl your version and the one of sourceforge and they both have the same problem on my setup.  Mainly they parse the pk header and makes the basic frame up, with the pk name but the link does not go to the next html page, the detail page is not generated.  Any ideas whats wrong?  It says generating <unit>.html which probably supposed to be the detail pages. Oh and of course the test samples do not work either.  the list of packages link to missing files.  Any help glady appreciated.</p>
<p>Thanks.</p>
<p>Richard.</unit></p>
]]></content:encoded>
	</item>
</channel>
</rss>
