JDBC Driver for HarperDB

Build 22.0.8462

FlattenObjects

Set FlattenObjects to true to flatten object properties into columns of their own. Otherwise, nested objects are returned as strings of JSON.

Data Type

bool

Default Value

false

Remarks

Without FlattenObjects set, embedded documents are returned as strings of JSON. Set FlattenObjects to true to flatten object properties into columns of their own. The property name is concatenated onto the object name with a period to generate the column name.

For example, you can flatten the nested objects below at connection time:

"manager": {
  "name": "Alice White",
  "age": 30
}
When FlattenObjects is set to true, the preceding object is flattened into the following table:

Column NameColumn Value
manager.nameAlice White
manager.age30

For further examples of schema discovery and flattening objects, please see Automatic Schema Discovery.

Copyright (c) 2023 CData Software, Inc. - All rights reserved.
Build 22.0.8462