Member Junction
    Preparing search index...

    Parsed result type for TestQuerySQL method calls — Results and AppliedParameters are deserialized from JSON strings into their native types.

    interface TestQuerySQLClientResult {
        AppliedParameters?: Record<string, string>;
        ErrorMessage?: string;
        ExecutionTime: number;
        Results: unknown[];
        RowCount: number;
        Success: boolean;
    }
    Index

    Properties

    AppliedParameters?: Record<string, string>

    Parsed applied parameters including defaults

    ErrorMessage?: string

    Error message if execution failed

    ExecutionTime: number

    Execution time in milliseconds

    Results: unknown[]

    Parsed result rows, or null if execution failed

    RowCount: number

    Number of rows returned

    Success: boolean

    Whether the query executed successfully