Skip to content

Add support for PREPARE and EXECUTE statement for simple query #292

Description

@sunng87

Postgres has a text form of parse-bind-execute query like:

-- parse the statement
PREPARE myplan(type) AS SELECT $1;

-- create portal and execute the statement
EXECUTE myplan(1);

-- remove the statement
DEALLOCATE myplan;

This will allow us to debug extended query, statement binding easier with psql client.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions