|
A primary key describes the table's uniqueness constraint and implies no order. As it happens, DB2 for i will build an index corresponding to the primary key simply because that's the fastest way for it to be able to check if there's already an instance of the key in the table. Indexes do have order. Indexes can also be created optimized for ascending or descending order, though most of the time an index can be read as fast backwards as forwards.
You can use DatabaseMetaData.getIndexInfo() against a table and match the resulting list against the primary key meta data to find the (one of the) indexes that match the primary key.
Does that help?
D getPrimaryKeys...
D PR ExtProc(*JAVA:
D 'java.sql.DatabaseMetaData':
D 'getPrimaryKeys')
D like(ResultSet)
D catalog like(jString) const
D schema like(jString) const
D table like(jString) const
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.