View previous topic :: View next topic
|
Author |
Message |
sukumaran
New User
Joined: 08 Apr 2007 Posts: 1 Location: chennai
|
|
|
|
hello every one
i want to know that what is the size of SQLCA
what is the error code for plan where program name not found
While executing the MAP , am getting error as ABMO. can any one suggest me |
|
Back to top |
|
|
muthuvel
Active User
Joined: 29 Nov 2005 Posts: 217 Location: Canada
|
|
|
|
SQLCA will have a size of 41 bytes.The below is the stucture
01 SQLCA
05 SQLCAID PIC X(8).
05 SQLCABC PIC S9 (9) COMP-4.
05 SQLCODE PIC S9 (9) COMP-4.
05 SQLERRM.
49 SQLERRML PIC S9(4) COMP-4.
49 SQLERRMC PIC X (70).
05 SQLERRP PIC X (8).
05 SQLERRD OCCURS 6 TIMES
PIC S9(9) COMP-4.
05 SQLWARN.
10 SQLWARN0 PIC X. |
|
Back to top |
|
|
|