mysql-native v2.2.0

API Reference Home: [This Version] [Latest Version] [Other Versions]


Function ResultRange.isValid

Check whether the range can still we used, or has been invalidated.

bool isValid () pure nothrow @property const;

A ResultRange becomes invalidated (and thus cannot be used) when the server is sent another command on the same connection. When an invalidated ResultRange is used, a MYXInvalidatedRange is thrown. If you need to send the server another command, but still access these results afterwords, you can save the results for later by converting this range to an array via std.array.array().