|
To make it easier for me to do multiple connections within a RPG
program, I created an array, named connAry, that this is defined with a
likeds of conn. Conn is a DS that I've defined in the same program that
contains connection ID, connection object and all its associated
preparedstatements info that I'll need to manage each different
connections. The RPG compile is giving me the RNF3826 error on the conn
DS, which make sense since java class does not occupy memory until
instantiated. With that say, any suggestion on how to get around this
problem?
D connAry ds dim(10) likeds(conn)
D conn DS qualified based(conn_p)
D INTID 3
D campusID 5 0
D groupServerDBConn...
D like(Connection)
D addressUpdatePS...
D like(preparedStatement)
D addressInsertPS...
D like(preparedStatement)
D addressDeletePS...
D like(preparedStatement)
D addressSelectPS...
D like(preparedStatement)
D relationshipUpdatePS...
D like(preparedStatement)
D relationshipInsertPS...
D like(preparedStatement)
D relationshipSelectPS...
D like(preparedStatement)
D relationshipDeletePS...
D like(preparedStatement)
D lastUsedTime z
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2025 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.