BUG #2629: libpq - Cannot deallocate prepared statement created with PQprepare() - Mailing list pgsql-bugs

From Andy McCurdy
Subject BUG #2629: libpq - Cannot deallocate prepared statement created with PQprepare()
Date
Msg-id 200609150739.k8F7dWcw087917@wwwmaster.postgresql.org
Whole thread Raw
Responses Re: BUG #2629: libpq - Cannot deallocate prepared statement created with PQprepare()
Re: BUG #2629: libpq - Cannot deallocate prepared statement created with PQprepare()
List pgsql-bugs
The following bug has been logged online:

Bug reference:      2629
Logged by:          Andy McCurdy
Email address:      andy.mccurdy@emergent.net
PostgreSQL version: 8.1.4
Operating system:   Windows XP
Description:        libpq - Cannot deallocate prepared statement created
with PQprepare()
Details:

According to http://www.postgresql.org/docs/8.1/interactive/libpq-exec.html,
the last statement in the PQprepare() function description suggests that a
user can run the statement: "DEALLOCATE [statement name]" with PQexec() to
deallocate a statement prepared with PQprepare().  When trying to do this, I
consistently get the error message:

ERROR:  prepared statement "[statement name]" does not exist

Here's a snippet of code that illustrates what I am attempting to do:

int main()
{

PGconn* conn;
PGresult* result;

conn = PQsetdbLogin("localhost", "5432", NULL, NULL, "postgres", "postgres",
"postgres");

result = PQprepare(conn, "MyQuery", "select * from pg_stat_activity", 0,
NULL);

/*
THE FOLLOW PQEXEC() FAILS.  Error message says:  ERROR:  prepared statement
"myquery" does not exist"
*/
result = PQexec(conn, "DEALLOCATE MyQuery");


result = PQexec(conn, "PREPARE MyQuery AS select * from pg_stat_activity");

/*
THIS WORKS
*/
result = PQexec(conn, "DEALLOCATE MyQuery");



return 0;
}

pgsql-bugs by date:

Previous
From: "Schoenen, Holger"
Date:
Subject: backup + restore fails
Next
From: Jorge Godoy
Date:
Subject: Re: wrong behavior using to_char()