Re: [HACKERS] Prepared queries and portals

2004-03-04 Thread Cyril VELTER
"Tom Lane" <[EMAIL PROTECTED]> writes: > "Cyril VELTER" <[EMAIL PROTECTED]> writes: > > so I've modified libpq to handle the case by adding to functions : > > > PQexecPreparedPortal(conn,stmtName,portalName,nParams,paramValues,paramlengt > > h,paramFormats,resultFormat,maxrows); > > > and > > >

Re: [HACKERS] Prepared queries and portals

2004-03-03 Thread Tom Lane
"Cyril VELTER" <[EMAIL PROTECTED]> writes: > so I've modified libpq to handle the case by adding to functions : > PQexecPreparedPortal(conn,stmtName,portalName,nParams,paramValues,paramlengt > h,paramFormats,resultFormat,maxrows); > and > PQfetchPortal(conn,portalName,maxrows) > PQe