SQLClient.ipc 660 B

123456789101112
  1. #include <LibSQL/Result.h>
  2. endpoint SQLClient
  3. {
  4. connected(u64 connection_id, DeprecatedString connected_to_database) =|
  5. connection_error(u64 connection_id, SQL::SQLErrorCode code, DeprecatedString message) =|
  6. execution_success(u64 statement_id, u64 execution_id, bool has_results, size_t created, size_t updated, size_t deleted) =|
  7. next_result(u64 statement_id, u64 execution_id, Vector<DeprecatedString> 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. disconnected(u64 connection_id) =|
  11. }