Uses of Class
com.ibm.fhir.persistence.jdbc.exception.FHIRPersistenceDBConnectException
-
-
Uses of FHIRPersistenceDBConnectException in com.ibm.fhir.persistence.jdbc.connection
Methods in com.ibm.fhir.persistence.jdbc.connection that return FHIRPersistenceDBConnectException Modifier and Type Method Description static FHIRPersistenceDBConnectExceptionFHIRDbHelper. buildFHIRPersistenceDBConnectException(String msg, IssueType issueType)Methods in com.ibm.fhir.persistence.jdbc.connection that throw FHIRPersistenceDBConnectException Modifier and Type Method Description static FHIRPersistenceDBConnectExceptionFHIRDbHelper. buildFHIRPersistenceDBConnectException(String msg, IssueType issueType)voidSetTenantAction. configureTenantAccess(Connection connection)Find the tenantKey for the datasource/tenant from the FHIR server configuration and use it to set up the connection for access by this tenant by setting the SV_TENANT_ID session variable (via the FHIR_ADMIN.SET_TENANT stored procedure).voidCreateTempTablesAction. createCodeSystemsTmp(DerbyAdapter adapter)Create the declared global temporary table CODE_SYSTEMS_TMPvoidCreateTempTablesAction. createCommonTokenValuesTmp(DerbyAdapter adapter)Create the declared global temporary table COMMON_TOKEN_VALUES_TMPConnectionFHIRDbConnectionStrategy. getConnection()Get a connection to the desired data source identified by the currentFHIRRequestContextConnectionFHIRDbProxyDatasourceConnectionStrategy. getConnection()Deprecated.ConnectionFHIRDbTenantDatasourceConnectionStrategy. getConnection()ConnectionFHIRDbTestConnectionStrategy. getConnection()StringSchemaNameFromProps. getSchemaForRequestContext(Connection connection)StringSchemaNameImpl. getSchemaForRequestContext(Connection connection)StringSchemaNameSupplier. getSchemaForRequestContext(Connection c)Get the schema name for the current request contextvoidAction. performOn(FHIRDbFlavor flavor, Connection c)Perform this action on the given connectionvoidChainedAction. performOn(FHIRDbFlavor flavor, Connection c)voidCreateTempTablesAction. performOn(FHIRDbFlavor flavor, Connection connection)voidDisableAutocommitAction. performOn(FHIRDbFlavor flavor, Connection c)voidSetSchemaAction. performOn(FHIRDbFlavor flavor, Connection c)voidSetTenantAction. performOn(FHIRDbFlavor flavor, Connection c) -
Uses of FHIRPersistenceDBConnectException in com.ibm.fhir.persistence.jdbc.dao.api
Methods in com.ibm.fhir.persistence.jdbc.dao.api that throw FHIRPersistenceDBConnectException Modifier and Type Method Description ConnectionFHIRDbDAO. getConnection()Obtains a database connection.List<Resource>ResourceDAO. history(String resourceType, String logicalId, Timestamp fromDateTime, int offset, int maxResults)Reads and returns all versions of the Resource with the passed logicalId, ordered by descending version id.intResourceDAO. historyCount(String resourceType, String logicalId, Timestamp fromDateTime)Reads and returns the COUNT of all versions of the Resource with the passed logicalId.ResourceResourceDAO. read(String logicalId, String resourceType)Reads and returns the latest version of the Resource with the passed logical id and resource type.Map<String,Integer>CodeSystemDAO. readAllCodeSystems()Reads all rows in the code_systems table and returns the data as a MapMap<String,Integer>ParameterDAO. readAllCodeSystems()Reads all rows in the Code_Systems table and returns the data as a MapMap<String,Integer>ResourceDAO. readAllResourceTypeNames()Reads all rows in the resource_types table and returns the data as a MapMap<String,Integer>ParameterDAO. readAllSearchParameterNames()Reads all rows in the Parameter_Names table and returns the data as a MapIntegerCodeSystemDAO. readCodeSystemId(String codeSystem)Read the code_system_id for the given code system nameIntegerParameterDAO. readCodeSystemId(String systemName)Read the id for the given code system name, but do not create a new record if it doesn't exist.intCodeSystemDAO. readOrAddCodeSystem(String codeSystem)Reads the id associated with the name of the passed Parameter from the code_systems table.intParameterDAO. readOrAddCodeSystemId(String systemName)Reads the id associated with the name of the passed code system name from the Code_Systems table.intParameterDAO. readOrAddParameterNameId(String parameterName)Reads the id associated with the name of the passed Parameter from the Parameter_Names table.IntegerParameterDAO. readParameterNameId(String parameterName)Read the id for the given parameter name, but do not create a new record if it doesn't exist.IntegerResourceDAO. readResourceTypeId(String parameterName)Reads the id associated with the name of the passed Resource type from the Resource_Types table.List<Resource>ResourceDAO. search(SqlQueryData queryData)Executes the search contained in the passed SqlQueryData, using it's encapsulated search string and bind variables.List<Resource>ResourceDAO. search(String sqlSelect)Executes the passed fully-formed SQL Select statement and returns the results If no matching resources are found, an empty collection is returned.List<Resource>ResourceDAO. searchByIds(String resourceType, List<Long> resourceIds)Searches for Resources that contain one of the passed ids.intResourceDAO. searchCount(SqlQueryData queryData)Executes a count query based on the data contained in the passed SqlQueryData, using it's encapsulated search string and bind variables.intResourceDAO. searchCount(String sqlSelectCount)Executes the passed fully-formed SQL Select COUNT statement and returns the integer count.List<Long>ResourceDAO. searchForIds(SqlQueryData queryData)This method supports the execution of a specialized query designed to return Resource ids, based on the contents of the passed select statement.List<String>ResourceDAO. searchStringValues(SqlQueryData queryData)Executes the search contained in the passed SqlQueryData, using it's encapsulated search string and bind variables.ResourceResourceDAO. versionRead(String logicalId, String resourceType, int versionId)Reads and returns the version of the Resource with the passed logical id, resource type, and version id. -
Uses of FHIRPersistenceDBConnectException in com.ibm.fhir.persistence.jdbc.dao.impl
Methods in com.ibm.fhir.persistence.jdbc.dao.impl that return FHIRPersistenceDBConnectException Modifier and Type Method Description protected FHIRPersistenceDBConnectExceptionFHIRDbDAOImpl. buildFHIRPersistenceDBConnectException(String msg, IssueType issueType)Methods in com.ibm.fhir.persistence.jdbc.dao.impl that throw FHIRPersistenceDBConnectException Modifier and Type Method Description protected FHIRPersistenceDBConnectExceptionFHIRDbDAOImpl. buildFHIRPersistenceDBConnectException(String msg, IssueType issueType)List<Resource>ResourceDAOImpl. history(String resourceType, String logicalId, Timestamp fromDateTime, int offset, int maxResults)intResourceDAOImpl. historyCount(String resourceType, String logicalId, Timestamp fromDateTime)ResourceResourceDAOImpl. read(String logicalId, String resourceType)Map<String,Integer>ParameterDAOImpl. readAllCodeSystems()Map<String,Integer>ResourceDAOImpl. readAllResourceTypeNames()Map<String,Integer>ParameterDAOImpl. readAllSearchParameterNames()IntegerParameterDAOImpl. readCodeSystemId(String codeSystemName)intParameterDAOImpl. readOrAddCodeSystemId(String codeSystemName)Calls a stored procedure to read the system contained in the passed Parameter in the Code_Systems table.intParameterDAOImpl. readOrAddParameterNameId(String parameterName)Calls a stored procedure to read the name contained in the passed Parameter in the Parameter_Names table.IntegerParameterDAOImpl. readParameterNameId(String parameterName)IntegerResourceDAOImpl. readResourceTypeId(String resourceType)protected intFHIRDbDAOImpl. runCountQuery(String sql, Object... searchArgs)Creates and executes a PreparedStatement for the passed sql containing a 'SELECT COUNT...'.protected List<Resource>FHIRDbDAOImpl. runQuery(String sql, Object... searchArgs)Creates and executes a PreparedStatement using the passed parameters that returns a collection of FHIR Data Transfer Objects of type T.protected List<String>FHIRDbDAOImpl. runQuery_STR_VALUES(String sql, Object... searchArgs)Creates and executes a PreparedStatement using the passed parameters that returns a collection of String values.List<Resource>ResourceDAOImpl. search(SqlQueryData queryData)List<Resource>ResourceDAOImpl. search(String sqlSelect)List<Resource>ResourceDAOImpl. searchByIds(String resourceType, List<Long> resourceIds)intResourceDAOImpl. searchCount(SqlQueryData queryData)intResourceDAOImpl. searchCount(String sqlSelectCount)List<Long>ResourceDAOImpl. searchForIds(SqlQueryData queryData)List<String>ResourceDAOImpl. searchStringValues(SqlQueryData queryData)ResourceResourceDAOImpl. versionRead(String logicalId, String resourceType, int versionId) -
Uses of FHIRPersistenceDBConnectException in com.ibm.fhir.persistence.jdbc.exception
Methods in com.ibm.fhir.persistence.jdbc.exception that return FHIRPersistenceDBConnectException Modifier and Type Method Description FHIRPersistenceDBConnectExceptionFHIRPersistenceDBConnectException. withIssue(OperationOutcome.Issue... issues)FHIRPersistenceDBConnectExceptionFHIRPersistenceDBConnectException. withIssue(Collection<OperationOutcome.Issue> issues) -
Uses of FHIRPersistenceDBConnectException in com.ibm.fhir.persistence.jdbc.impl
Methods in com.ibm.fhir.persistence.jdbc.impl that throw FHIRPersistenceDBConnectException Modifier and Type Method Description StringFHIRPersistenceJDBCImpl. getSchemaForRequestContext(Connection connection) -
Uses of FHIRPersistenceDBConnectException in com.ibm.fhir.persistence.jdbc.postgres
Methods in com.ibm.fhir.persistence.jdbc.postgres that throw FHIRPersistenceDBConnectException Modifier and Type Method Description IntegerPostgresResourceDAO. readResourceTypeId(String resourceType)IntegerPostgresResourceNoProcDAO. readResourceTypeId(String resourceType)
-