JDBC Driver for Confluence

Build 22.0.8462

Primary Keys

You can use the getPrimaryKeys method to return information about the primary keys for Confluence tables. You can restrict the results by the table name.

The following code example outputs the column or columns composing the primary key for the Pages table:

String connectionString = "jdbc:confluence:User=admin;APIToken=myApiToken;Url=https://yoursitename.atlassian.net;Timezone=America/New_York;";

Connection conn = DriverManager.getConnection(connectionString);
ResultSet rs = conn.getMetaData().getPrimaryKeys(null,null,"Pages");
while(rs.next()){
  System.out.println(rs.getString("COLUMN_NAME"));
}

The getPrimaryKeys method returns the following columns:

Column NameData TypeDescription
TABLE_CATStringThe table catalog
TABLE_SCHEMStringThe table schema.
TABLE_NAMEStringThe table name.
COLUMN_NAMEStringThe column name.
KEY_SEQshortThe sequence number, or column index starting from 1, within the foreign key.
PK_NAMEStringThe primary key name.

Copyright (c) 2023 CData Software, Inc. - All rights reserved.
Build 22.0.8462