Bug #20661 | mysql_next_result and mysql_more_results don't work for stored procedures | ||
---|---|---|---|
Submitted: | 23 Jun 2006 14:00 | Modified: | 26 Jul 2006 22:43 |
Reporter: | Ian Sparrowhawk | Email Updates: | |
Status: | Closed | Impact on me: | |
Category: | MySQL Server: Documentation | Severity: | S2 (Serious) |
Version: | 5.0.22 | OS: | Linux (Linux) |
Assigned to: | Paul DuBois | CPU Architecture: | Any |
If the data you need to attach is more than 50MB, you should create a compressed archive of the data, split it to 50MB chunks, and upload each of them as a separate attachment.
To split a large file:
- On *nix platforms use the split command e.g.
split -b 50MB <my_large_archive> <my_split_archive_prefix>
- On windows use WinZip or a similar utility to split the large file
[27 Jun 2006 8:44]
Ian Sparrowhawk
[27 Jun 2006 8:44]
Ian Sparrowhawk
Script to create the example Coin table
Attachment: CoinsTable.sql (application/octet-stream, text), 269 bytes.
[27 Jun 2006 8:45]
Ian Sparrowhawk
Stored procedure called by the example program
Attachment: getColour.sql (application/octet-stream, text), 707 bytes.
[27 Jun 2006 8:45]
Ian Sparrowhawk
Make file to build the example (g++)
Attachment: Makefile (text/plain), 509 bytes.
[27 Jun 2006 8:46]
Ian Sparrowhawk
Example code to demonstrate the bug
Attachment: example1.cpp (application/octet-stream, text), 2.20 KiB.