Forms: text_io problem with \\server\path\filename.txt -> ORA-302000

From: Stefan Roehle <roehle_at_uni-mainz.de>
Date: Tue, 2 Aug 2005 11:02:30 +0200
Message-ID: <dcncr6$ca$1_at_news1.zdv.uni-mainz.de>



Hi,

when trying to access a file on a network drive from my form application with

Text_IO.Fopen('"\\server\path\filename.txt"','w');

I always encounter the error ORA-302000. Trying to exmine it closer with
---

EXCEPTION
    WHEN OTHERS THEN

      IF SQLCODE = -302000 then
        LOOP
          EXIT WHEN TOOL_ERR.NERRORS = 0;
          MESSAGE(TO_CHAR(TOOL_ERR.CODE) || ': ' || TOOL_ERR.MESSAGE);
          TOOL_ERR.POP;
        END LOOP;
      END IF;

---

does not show any error, TOOL_ERR.NERRORS being 0... Any suggestions on how to acces a UNC path as given above?

Stefan Received on Tue Aug 02 2005 - 11:02:30 CEST

Original text of this message