Re: [HACKERS] which statements need bind/describe messages?

2008-08-09 Thread Abhijit Menon-Sen
At 2008-08-09 15:57:42 +0530, [EMAIL PROTECTED] wrote: > > For which statements can I also avoid sending Bind and Describe? I can't avoid sending Bind because Execute needs a portal and Bind is what creates one. Let's pretend I didn't mention Bind at all. Sorry. -- ams -- Sent via pgsql-hackers

[HACKERS] which statements need bind/describe messages?

2008-08-09 Thread Abhijit Menon-Sen
My client library sends Parse/Bind/Describe/Execute/Sync for each query, unless it's using a previously-prepared statement, in which case it can omit the Parse message. For which statements can I also avoid sending Bind and Describe? As far as I can tell, I can just send Parse/Execute/Sync for an