Checks if the specified SQL-state-string defines NOT FOUND condition. This function assumes that the given string contains a valid SQL-state. @param s the condition SQLSTATE. @retval true if the given string defines NOT FOUND condition. @retval false otherwise. */
| 896 | @retval false otherwise. |
| 897 | */ |
| 898 | inline bool is_sqlstate_not_found(const char *s) |
| 899 | { return s[0] == '0' && s[1] == '2'; } |
| 900 | |
| 901 | |
| 902 | /** |