Hello, All.

   Should IResultSet returned by IStatement::openCursor remain in working state 
after 
free() call?
   I.e. is following code allowed?

   IResultSet* rs = stmt->openCursor(...);
   stmt->free();
   rs->fetchNext(...);

   How about two results sets from one statement? What should do following code?

   IResultSet* rs1 = stmt->openCursor(...);
   IResultSet* rs2 = stmt->openCursor(...);
   rs1->fetchNext(...);
   rs2->fetchNext(...);

-- 
   WBR, SD.

------------------------------------------------------------------------------
Firebird-Devel mailing list, web interface at 
https://lists.sourceforge.net/lists/listinfo/firebird-devel

Reply via email to