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

Home -> Community -> Usenet -> c.d.o.server -> SQLGLS dump on 64bit

SQLGLS dump on 64bit

From: My-Works <info_at_my-works.org>
Date: Thu, 24 Apr 2003 14:40:56 +0200
Message-ID: <b88lor$d4u$1@fata.cs.interbusiness.it>


The next COBOL test program

       working-storage section.
           exec sql include sqlca end-exec.
           exec sql begin declare section end-exec.
       01 id-string pic x(100) value "gd/gd_at_htora1".
       01 num pic s9(9) comp.
           exec sql end declare section end-exec.
       01 mess pic x(200).
       01 mess-len pic s9(9) comp value 200.
       01 mess-cod pic s9(9) comp.

       procedure division.
           display "Before connect".
           exec sql connect :id-string end-exec.
           display "After connect ", sqlcode.
           exec sql select count(*) into :num from dual end-exec.
           display "After select ", num, " ", sqlcode.
           call "SQLGLS" using mess, mess-len, mess-cod.
           display mess-len, " ", mess-cod, " ", mess.
           stop run.

crashes during SQLGLS call.
I have 9.2.0.1.0 64bit Oracle on HP-UX B.11.11

The same program compiled with 32bit runs normally, that is procob32 test.pco
cob32 test.cob
rtsora32 test

Can somebody help me?

Thanks
Misha Received on Thu Apr 24 2003 - 07:40:56 CDT

Original text of this message

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