MySQL 9.1.0
Source Code Documentation
|
If CLIENT_PROTOCOL_41 is enabled, the EOF packet contains a warning count and status flags.
Type | Name | Description |
---|---|---|
int<1> | header | 0xFE EOF packet header |
if capabilities & CLIENT_PROTOCOL_41 { | ||
int<2> | warnings | number of warnings |
int<2> | status_flags | SERVER_STATUS_flags_enum |
Example:
A MySQL 4.1 EOF packet with: 0 warnings, AUTOCOMMIT enabled.
05 00 00 05 fe 00 00 02 00
| ..........
|