Searched defs:dbId (Results 1 - 1 of 1) sorted by relevance

/forgerock/openidm-v4/openidm-repo-jdbc/src/main/java/org/forgerock/openidm/repo/jdbc/impl/
H A DGenericTableHandler.java280 long dbId = keys.getLong(1);
284 writeValueProperties(fullId, dbId, localId, jv, connection);
294 * @param dbId the generated identifier to link the properties table with the main table (foreign key)
300 void writeValueProperties(String fullId, long dbId, String localId, JsonValue value, Connection connection) throws SQLException { argument
305 batchingCount = writeValueProperties(fullId, dbId, localId, value, connection, propCreateStatement, batchingCount);
328 * @param dbId the generated identifier to link the properties table with the main table (foreign key)
337 private int writeValueProperties(String fullId, long dbId, String localId, JsonValue value, Connection connection, argument
345 batchingCount = writeValueProperties(fullId, dbId, localId, entry, connection, propCreateStatement, batchingCount);
358 queryMap.get(QueryDefinition.PROPCREATEQUERYSTR), dbId, localId, propkey, proptype, propvalue);
360 propCreateStatement.setLong(1, dbId);
[all...]

Completed in 29 milliseconds