JDBC Driver for Microsoft Dynamics CRM

Build 22.0.8462

Primary Keys

You can use the getPrimaryKeys method to return information about the primary keys for Microsoft Dynamics CRM 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 Lead table:

String connectionString = "jdbc:dynamicscrm:User=myuseraccount;Password=mypassword;URL=https://myOrg.crm.dynamics.com/;CRM Version=CRM Online;";

Connection conn = DriverManager.getConnection(connectionString);
ResultSet rs = conn.getMetaData().getPrimaryKeys(null,null,"Lead");
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