
Thanks.
--
You received this message because you are subscribed to the Google Groups "HAPI FHIR" group.
To unsubscribe from this group and stop receiving emails from it, send an email to hapi-fhir+...@googlegroups.com.
To post to this group, send email to hapi...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/hapi-fhir/396e2d2c-cbf2-4f4b-a203-6a06a765d435%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
The data in that column is GZip encoded, but it should be possible to uncompress it and you'll have standard JSON content.Cheers,James
On Tue, Jun 25, 2019 at 1:05 PM <mwhe...@gmail.com> wrote:
Hello,--I am trying to access some data directly from the database for my HAPI FHIR server that was built using the hapi-fhir-jpaserver-starter project. I have it configured to run against MySQL.I think the data I want is in the "hfj_res_ver" table, but I am having trouble accessing the RES_TEXT blob. RES_ENCODING implies that it is JSONC encoded.Is there anyway that I can access the blob information in RES_TEXT directly within a SQL client (i.e. MySQL workbench)? I'm not really sure where to start since it's hard for me to tell exactly what encoding, encryption, or other functions have been applied to this data.This is what I see in mysql workbench:
Thanks.
You received this message because you are subscribed to the Google Groups "HAPI FHIR" group.
To unsubscribe from this group and stop receiving emails from it, send an email to hapi...@googlegroups.com.
// set database encoding
DaoConfig daoConfig = appCtx.getBean(DaoConfig.class);
daoConfig.setResourceEncoding(ResourceEncodingEnum.JSON);