| 224 | inline void close_cursor() { delete cursor; cursor= 0; } |
| 225 | inline bool is_in_use() { return flags & (uint) IS_IN_USE; } |
| 226 | inline bool is_sql_prepare() const { return flags & (uint) IS_SQL_PREPARE; } |
| 227 | void set_sql_prepare() { flags|= (uint) IS_SQL_PREPARE; } |
| 228 | bool prepare(const char *packet, uint packet_length); |
| 229 | bool execute_loop(String *expanded_query, |
no outgoing calls
no test coverage detected