Changes between Initial Version and Version 1 of Ticket #29938
- Timestamp:
- 10/12/2014 11:37:08 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #29938 – Description
initial v1 1 1 The WordPress Database API does not expose a way to work with multiple resultsets. 2 2 3 Multiple resultsets are returned by queries that have several sets of results available and this is often the case with stored procedures and the usual way is to call {{{next_result}}} and {{{use/store_result}} on the mysqli connection, however the connection is abstracted away behind the undocumented {{{$wpdb->dbh}}} field.3 Multiple resultsets are returned by queries that have several sets of results available and this is often the case with stored procedures and the usual way is to call {{{next_result}}} and {{{use/store_result}}} on the mysqli connection, however the connection is abstracted away behind the undocumented {{{$wpdb->dbh}}} field. 4 4 5 5 {{{