SQLClient.ipc 452 B

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