Skip to content
This repository was archived by the owner on Jun 12, 2024. It is now read-only.
This repository was archived by the owner on Jun 12, 2024. It is now read-only.

Implement positional parameters for SQL #1

@proofrock

Description

@proofrock

Currently, only named params are supported:

{
    "transaction": [{
            "statement": "INSERT INTO TEST_TABLE (ID, VAL, VAL2) VALUES (:id, :val, :val2)",
            "values": { "id": 1, "val": "hello", "val2": null }
    }]
}

Implement also:

{
    "transaction": [{
            "statement": "INSERT INTO TEST_TABLE (ID, VAL, VAL2) VALUES (?, ?, ?)",
            "values": [ 1, "hello", null ]
    }]
}

Metadata

Metadata

Assignees

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions