Serenity Operating System
1#include <LibSQL/Result.h>
2#include <LibSQL/Value.h>
3
4endpoint SQLClient
5{
6 execution_success(u64 statement_id, u64 execution_id, Vector<DeprecatedString> column_names, bool has_results, size_t created, size_t updated, size_t deleted) =|
7 next_result(u64 statement_id, u64 execution_id, Vector<SQL::Value> row) =|
8 results_exhausted(u64 statement_id, u64 execution_id, size_t total_rows) =|
9 execution_error(u64 statement_id, u64 execution_id, SQL::SQLErrorCode code, DeprecatedString message) =|
10}