Uses of Class
org.linuxforhealth.fhir.persistence.jdbc.exception.FHIRPersistenceDBConnectException
-
-
Uses of FHIRPersistenceDBConnectException in org.linuxforhealth.fhir.persistence.jdbc.citus
Methods in org.linuxforhealth.fhir.persistence.jdbc.citus that throw FHIRPersistenceDBConnectException Modifier and Type Method Description Resource
CitusResourceDAO. read(java.lang.String logicalId, java.lang.String resourceType)
Resource
CitusResourceDAO. versionRead(java.lang.String logicalId, java.lang.String resourceType, int versionId)
-
Uses of FHIRPersistenceDBConnectException in org.linuxforhealth.fhir.persistence.jdbc.connection
Methods in org.linuxforhealth.fhir.persistence.jdbc.connection that return FHIRPersistenceDBConnectException Modifier and Type Method Description static FHIRPersistenceDBConnectException
FHIRDbHelper. buildFHIRPersistenceDBConnectException(java.lang.String msg, IssueType issueType)
Methods in org.linuxforhealth.fhir.persistence.jdbc.connection that throw FHIRPersistenceDBConnectException Modifier and Type Method Description static FHIRPersistenceDBConnectException
FHIRDbHelper. buildFHIRPersistenceDBConnectException(java.lang.String msg, IssueType issueType)
void
CreateTempTablesAction. createCanonicalValuesTmp(DerbyAdapter adapter)
Create the declared global temporary table COMMON_TOKEN_VALUES_TMPvoid
CreateTempTablesAction. createCodeSystemsTmp(DerbyAdapter adapter)
Create the declared global temporary table CODE_SYSTEMS_TMPvoid
CreateTempTablesAction. createCommonTokenValuesTmp(DerbyAdapter adapter)
Create the declared global temporary table COMMON_TOKEN_VALUES_TMPjava.sql.Connection
FHIRDbConnectionStrategy. getConnection()
Get a connection to the desired data source identified by the currentFHIRRequestContext
java.sql.Connection
FHIRDbTenantDatasourceConnectionStrategy. getConnection()
java.sql.Connection
FHIRDbTestConnectionStrategy. getConnection()
java.lang.String
SchemaNameFromProps. getSchemaForRequestContext(java.sql.Connection connection)
java.lang.String
SchemaNameImpl. getSchemaForRequestContext(java.sql.Connection connection)
java.lang.String
SchemaNameSupplier. getSchemaForRequestContext(java.sql.Connection c)
Get the schema name for the current request contextvoid
Action. performOn(FHIRDbFlavor flavor, java.sql.Connection c)
Perform this action on the given connectionvoid
ChainedAction. performOn(FHIRDbFlavor flavor, java.sql.Connection c)
void
CreateTempTablesAction. performOn(FHIRDbFlavor flavor, java.sql.Connection connection)
void
DisableAutocommitAction. performOn(FHIRDbFlavor flavor, java.sql.Connection c)
void
SetMultiShardModifyModeAction. performOn(FHIRDbFlavor flavor, java.sql.Connection connection)
void
SetSchemaAction. performOn(FHIRDbFlavor flavor, java.sql.Connection c)
-
Uses of FHIRPersistenceDBConnectException in org.linuxforhealth.fhir.persistence.jdbc.dao.api
Methods in org.linuxforhealth.fhir.persistence.jdbc.dao.api that throw FHIRPersistenceDBConnectException Modifier and Type Method Description java.sql.Connection
FHIRDbDAO. getConnection()
Obtains a database connection.java.util.List<Resource>
ResourceDAO. history(java.lang.String resourceType, java.lang.String logicalId, java.sql.Timestamp fromDateTime, int offset, int maxResults)
Reads and returns all versions of the Resource with the passed logicalId, ordered by descending version id.int
ResourceDAO. historyCount(java.lang.String resourceType, java.lang.String logicalId, java.sql.Timestamp fromDateTime)
Reads and returns the COUNT of all versions of the Resource with the passed logicalId.Resource
ResourceDAO. read(java.lang.String logicalId, java.lang.String resourceType)
Reads and returns the latest version of the Resource with the passed logical id and resource type.java.util.Map<java.lang.String,java.lang.Integer>
CodeSystemDAO. readAllCodeSystems()
Reads all rows in the code_systems table and returns the data as a Mapjava.util.Map<java.lang.String,java.lang.Integer>
ParameterDAO. readAllCodeSystems()
Reads all rows in the Code_Systems table and returns the data as a Mapjava.util.Map<java.lang.String,java.lang.Integer>
ResourceDAO. readAllResourceTypeNames()
Reads all rows in the resource_types table and returns the data as a Mapjava.util.Map<java.lang.String,java.lang.Integer>
ParameterDAO. readAllSearchParameterNames()
Reads all rows in the Parameter_Names table and returns the data as a Mapjava.lang.Integer
CodeSystemDAO. readCodeSystemId(java.lang.String codeSystem)
Read the code_system_id for the given code system namejava.lang.Integer
ParameterDAO. readCodeSystemId(java.lang.String systemName)
Read the id for the given code system name, but do not create a new record if it doesn't exist.java.lang.Long
ResourceDAO. readLogicalResourceId(int resourceTypeId, java.lang.String logicalId)
Look up the value of the logical_resource_id from the logical_resource_ident tablejava.util.List<java.lang.Long>
ResourceDAO. readLogicalResourceIdList(java.lang.String logicalId)
Read all the matching logical_resource_id values for the given logicalIdint
CodeSystemDAO. readOrAddCodeSystem(java.lang.String codeSystem)
Reads the id associated with the name of the passed Parameter from the code_systems table.int
ParameterDAO. readOrAddCodeSystemId(java.lang.String systemName)
Reads the id associated with the name of the passed code system name from the Code_Systems table.int
ParameterDAO. readOrAddParameterNameId(java.lang.String parameterName)
Reads the id associated with the name of the passed Parameter from the Parameter_Names table.java.lang.Integer
ParameterDAO. readParameterNameId(java.lang.String parameterName)
Read the id for the given parameter name, but do not create a new record if it doesn't exist.java.lang.Integer
ResourceDAO. readResourceTypeId(java.lang.String parameterName)
Reads the id associated with the name of the passed Resource type from the Resource_Types table.java.util.List<Resource>
ResourceDAO. search(java.lang.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.java.util.List<Resource>
ResourceDAO. search(Select select)
Executes the search contained in the passedSelect
, using its encapsulated search string and bind variables.java.util.List<Resource>
ResourceDAO. searchByIds(java.lang.String resourceType, java.util.List<java.lang.Long> resourceIds, boolean includeResourceData)
Searches for Resources that contain one of the passed ids.int
ResourceDAO. searchCount(java.lang.String sqlSelectCount)
Executes the passed fully-formed SQL Select COUNT statement and returns the integer count.int
ResourceDAO. searchCount(Select countQuery)
Executes a count query based on the data contained in the passedSelect
statement, using its encapsulated search string and bind variables.java.util.List<java.lang.Long>
ResourceDAO. searchForIds(Select dataQuery)
This method supports the execution of a specialized query designed to return Resource ids, based on the contents of the passed select statement.java.util.Map<java.lang.Integer,java.util.List<java.lang.Long>>
ResourceDAO. searchWholeSystem(Select select)
Executes the whole-system filter search contained in the passedSelect
, using its encapsulated search string and bind variables.Resource
ResourceDAO. versionRead(java.lang.String logicalId, java.lang.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 org.linuxforhealth.fhir.persistence.jdbc.dao.impl
Methods in org.linuxforhealth.fhir.persistence.jdbc.dao.impl that return FHIRPersistenceDBConnectException Modifier and Type Method Description protected FHIRPersistenceDBConnectException
FHIRDbDAOImpl. buildFHIRPersistenceDBConnectException(java.lang.String msg, IssueType issueType)
Methods in org.linuxforhealth.fhir.persistence.jdbc.dao.impl that throw FHIRPersistenceDBConnectException Modifier and Type Method Description protected FHIRPersistenceDBConnectException
FHIRDbDAOImpl. buildFHIRPersistenceDBConnectException(java.lang.String msg, IssueType issueType)
java.util.List<Resource>
ResourceDAOImpl. history(java.lang.String resourceType, java.lang.String logicalId, java.sql.Timestamp fromDateTime, int offset, int maxResults)
int
ResourceDAOImpl. historyCount(java.lang.String resourceType, java.lang.String logicalId, java.sql.Timestamp fromDateTime)
Resource
ResourceDAOImpl. read(java.lang.String logicalId, java.lang.String resourceType)
java.util.Map<java.lang.String,java.lang.Integer>
ParameterDAOImpl. readAllCodeSystems()
java.util.Map<java.lang.String,java.lang.Integer>
ResourceDAOImpl. readAllResourceTypeNames()
java.util.Map<java.lang.String,java.lang.Integer>
ParameterDAOImpl. readAllSearchParameterNames()
java.lang.Integer
ParameterDAOImpl. readCodeSystemId(java.lang.String codeSystemName)
java.lang.Long
ResourceDAOImpl. readLogicalResourceId(int resourceTypeId, java.lang.String logicalId)
java.util.List<java.lang.Long>
ResourceDAOImpl. readLogicalResourceIdList(java.lang.String logicalId)
int
ParameterDAOImpl. readOrAddCodeSystemId(java.lang.String codeSystemName)
Calls a stored procedure to read the system contained in the passed Parameter in the Code_Systems table.int
ParameterDAOImpl. readOrAddParameterNameId(java.lang.String parameterName)
Calls a stored procedure to read the name contained in the passed Parameter in the Parameter_Names table.java.lang.Integer
ParameterDAOImpl. readParameterNameId(java.lang.String parameterName)
java.lang.Integer
ResourceDAOImpl. readResourceTypeId(java.lang.String resourceType)
protected int
FHIRDbDAOImpl. runCountQuery(java.lang.String sql, java.lang.Object... searchArgs)
Creates and executes a PreparedStatement for the passed sql containing a 'SELECT COUNT...'.protected int
FHIRDbDAOImpl. runCountQuery(Select countQuery)
Creates and executes a PreparedStatement for the passed sql containing a 'SELECT COUNT...'.protected java.util.List<Resource>
FHIRDbDAOImpl. runQuery(java.lang.String sql, java.lang.Object... searchArgs)
Creates and executes a PreparedStatement using the passed parameters that returns a collection of FHIR Data Transfer Objects of type T.protected java.util.List<Resource>
FHIRDbDAOImpl. runQuery(Select select)
Retrieve the FHIR objects by executing the givenSelect
statementprotected java.util.List<java.lang.String>
FHIRDbDAOImpl. runQuery_STR_VALUES(java.lang.String sql, java.lang.Object... searchArgs)
Creates and executes a PreparedStatement using the passed parameters that returns a collection of String values.java.util.List<Resource>
ResourceDAOImpl. search(java.lang.String sqlSelect)
java.util.List<Resource>
ResourceDAOImpl. search(Select select)
java.util.List<Resource>
ResourceDAOImpl. searchByIds(java.lang.String resourceType, java.util.List<java.lang.Long> resourceIds, boolean includeResourceData)
int
ResourceDAOImpl. searchCount(java.lang.String sqlSelectCount)
int
ResourceDAOImpl. searchCount(Select countQuery)
java.util.List<java.lang.Long>
ResourceDAOImpl. searchForIds(Select dataQuery)
java.util.Map<java.lang.Integer,java.util.List<java.lang.Long>>
ResourceDAOImpl. searchWholeSystem(Select wholeSystemQuery)
Resource
ResourceDAOImpl. versionRead(java.lang.String logicalId, java.lang.String resourceType, int versionId)
-
Uses of FHIRPersistenceDBConnectException in org.linuxforhealth.fhir.persistence.jdbc.exception
Methods in org.linuxforhealth.fhir.persistence.jdbc.exception that return FHIRPersistenceDBConnectException Modifier and Type Method Description FHIRPersistenceDBConnectException
FHIRPersistenceDBConnectException. withIssue(java.util.Collection<OperationOutcome.Issue> issues)
FHIRPersistenceDBConnectException
FHIRPersistenceDBConnectException. withIssue(OperationOutcome.Issue... issues)
-
Uses of FHIRPersistenceDBConnectException in org.linuxforhealth.fhir.persistence.jdbc.impl
Methods in org.linuxforhealth.fhir.persistence.jdbc.impl that throw FHIRPersistenceDBConnectException Modifier and Type Method Description java.lang.String
FHIRPersistenceJDBCImpl. getSchemaForRequestContext(java.sql.Connection connection)
-
Uses of FHIRPersistenceDBConnectException in org.linuxforhealth.fhir.persistence.jdbc.postgres
Methods in org.linuxforhealth.fhir.persistence.jdbc.postgres that throw FHIRPersistenceDBConnectException Modifier and Type Method Description Resource
PostgresResourceDAO. read(java.lang.String logicalId, java.lang.String resourceType)
java.lang.Integer
PostgresResourceDAO. readResourceTypeId(java.lang.String resourceType)
java.lang.Integer
PostgresResourceNoProcDAO. readResourceTypeId(java.lang.String resourceType)
Resource
PostgresResourceDAO. versionRead(java.lang.String logicalId, java.lang.String resourceType, int versionId)
-