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
|
Full Usage:
ConnectorPlan(Runtime, CandidatePackage, Notes)
Parameters:
string
CandidatePackage : string
Notes : string[]
Returns: ConnectorPlan
|
|
Instance members
| Instance member |
Description
|
Full Usage:
this.CandidatePackage
Returns: string
|
Proposed connector package.
|
Full Usage:
this.Notes
Returns: string[]
|
Free-form integration notes.
|
Full Usage:
this.Runtime
Returns: string
|
Display name of the target runtime.
|
Static members
| Static member |
Description
|
Full Usage:
ConnectorPlan.create (Runtime, CandidatePackage, Notes)
Parameters:
string
CandidatePackage : string
Notes : string[]
Returns: ConnectorPlan
|
Named-argument constructor exposed to JavaScript and Python callers.
|
ProcessCore