VB6, RDO AND QUERYSTRING
I'm creating a query string as follows ...
gSql = "{ CALL MYSP( ?, ?, ?, ?, ?, ?, {resultset 10, RECORD_OUTPUT} ) }"
the {resultset 1000, RECORD_OUTPUT}
is copied it from Microsoft's MSDN
The error displayed after I compile is:
identifier \'RECORD_OUTPUT\' must be declared
What should the {resultset 1000, 开发者_C百科RECORD_OUTPUT}
actually be ?
At this position, The Stored Procedure will return refcursor back to VB6.
精彩评论