×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
Two things:
First, given this code:
rs = JDBC_GetPrimaryKeys(dbmd: '*NULL': 'EMP': 'Employees');
dow (jdbc_nextRow(rs));
idx = 1;
Row1 = jdbc_getCol(rs: idx);
dow (idx < 6);
idx = idx + 1;
Row1 = %trim(Row1)
+ ', '
+ jdbc_getCol(rs: idx);
enddo;
except;
enddo;
jdbc_freeResult(rs);
(I have the front-end for dbmd.getPrimaryKeys() set up so that the
string "*NULL" becomes a *NULL, for both catalog and schema)
I find that I get the primary key information, but then the
jdbc_freeResult(rs) call blows up. I've got dumps, and I can do
something with them tomorrow morning.
Are result sets returned from dbmd.getPrimaryKeys() somehow different
from result sets returned from data?
Second, on a less-serious note, I find that if I do a getPrimaryKeys()
on AQUESTVIEW/VIEWCUS (a native keyed PF, compiled from DDS), whether
from RPG or from Java, I get an empty result set. Any idea why this
would be?
--
JHHL
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 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.