| 109 | } |
| 110 | |
| 111 | char* lbug_query_result_to_string(lbug_query_result* query_result) { |
| 112 | std::string result_string = static_cast<QueryResult*>(query_result->_query_result)->toString(); |
| 113 | return convertToOwnedCString(result_string); |
| 114 | } |
| 115 | |
| 116 | void lbug_query_result_reset_iterator(lbug_query_result* query_result) { |
| 117 | static_cast<QueryResult*>(query_result->_query_result)->resetIterator(); |