Logo ProcessCore

ConnectorPlan Type

Describes a runtime adapter without taking a dependency on its connector package yet.

Plans are static metadata: they declare the runtime, the candidate connector library and a short list of free-form integration notes. They do not contain executable connection logic — the actual ISqliteDriver implementations live in the runtime-specific projects (ProcessCore.SQL.DotNet, ProcessCore.SQL.JavaScript, ProcessCore.SQL.Python).

Constructors

Constructor Description

ConnectorPlan(Runtime, CandidatePackage, Notes)

Full Usage: ConnectorPlan(Runtime, CandidatePackage, Notes)

Parameters:
    Runtime : string
    CandidatePackage : string
    Notes : string[]

Returns: ConnectorPlan
Runtime : string
CandidatePackage : string
Notes : string[]
Returns: ConnectorPlan

Instance members

Instance member Description

this.CandidatePackage

Full Usage: this.CandidatePackage

Returns: string

Proposed connector package.

Returns: string

this.Notes

Full Usage: this.Notes

Returns: string[]

Free-form integration notes.

Returns: string[]

this.Runtime

Full Usage: this.Runtime

Returns: string

Display name of the target runtime.

Returns: string

Static members

Static member Description

ConnectorPlan.create (Runtime, CandidatePackage, Notes)

Full Usage: ConnectorPlan.create (Runtime, CandidatePackage, Notes)

Parameters:
    Runtime : string
    CandidatePackage : string
    Notes : string[]

Returns: ConnectorPlan

Named-argument constructor exposed to JavaScript and Python callers.

Runtime : string
CandidatePackage : string
Notes : string[]
Returns: ConnectorPlan

Type something to start searching.