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

/forgerock/openidm-v4/openidm-repo-jdbc/src/main/java/org/forgerock/openidm/repo/jdbc/impl/
H A DMSSQLTableHandler.java111 long dbId = rs.getLong("id");
114 fullId, existingRev, dbId, objectTypeDbId);
135 updateStatement, fullId, newLocalId, newRev, objString, dbId, existingRev);
139 updateStatement.setLong(4, dbId);
158 writeValueProperties(fullId, dbId, localId, jv, connection);
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...]
H A DOracleTableHandler.java98 long dbId = keys.getLong(1);
102 writeValueProperties(fullId, dbId, localId, jv, connection);

Completed in 44 milliseconds