We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using Oracle, there are three ways to store JSON objects:
VARCHAR2
BLOB
CLOB
Traditionally, the JsonType assumed the VARCHAR2 column is used, but now you can customize the default column type, like this:
JsonType
properties.setProperty( Configuration.PropertyKey.DEFAULT_JSON_TYPE.getKey(), "blob" );
or
properties.setProperty( Configuration.PropertyKey.DEFAULT_JSON_TYPE.getKey(), "varchar" );
properties.setProperty( Configuration.PropertyKey.DEFAULT_JSON_TYPE.getKey(), "json" );
The text was updated successfully, but these errors were encountered:
Add support for Oracle 21c JSON columns #422
9d72b1a
Add support for customizing the JsonType underlying Oracle column type #424
8e710e1
25ac911
9ffe169
b9f86b7
d20c417
vladmihalcea
No branches or pull requests
When using Oracle, there are three ways to store JSON objects:
VARCHAR2
columnBLOB
orCLOB
columnTraditionally, the
JsonType
assumed theVARCHAR2
column is used, but now you can customize the default column type, like this:or
or
The text was updated successfully, but these errors were encountered: