in reply to how to deal with multiple results returned by select statement

Do you mean the result-set has more than one row? If so, call fetch again. If you mean there can be more than one different result-set you'll need to tell us at least the driver you are using and perhaps an example.

  • Comment on Re: how to deal with multiple results returned by select statement

Replies are listed 'Best First'.
Re^2: how to deal with multiple results returned by select statement
by PhillipHuang (Beadle) on Jun 28, 2011 at 10:05 UTC
    thanks,as following your suggestion, i have fixed it by using rows and fetch() to get all return items.