Skip to main content
All docs
V26.1
  • dxBackend.ConnectionString.JSON Unit

    Implements the TdxBackendInMemoryJSONConnection component and related types.

    Classes

    Name Description
    TdxBackendCustomInMemoryJSONConnection The base class for JSON-based data connection components (TdxBackendInMemoryJSONConnection and TdxBackendDataSetJSONConnection).
    TdxBackendInMemoryJSONConnection A component designed for interaction with data stored in memory.

    Remarks

    The dxBackend.ConnectionString.JSON unit is included in your project automatically if you create a TdxBackendInMemoryJSONConnection component at design time. If you create and use TdxBackendInMemoryJSONConnection components at runtime, include the dxBackend.ConnectionString.SQL unit in your project source code as follows:

    uses
      dxBackend.ConnectionString.JSON;
    // ...
    

    Important

    Ensure that you use full dxBackend.ConnectionString.JSON object file names in C++ linker directives:

    dxBackend.ConnectionString.JSON.o (for 64-bit) and dxBackend.ConnectionString.JSON.obj (for 32-bit)

    Otherwise, linker errors may occur.

    See Also