diff options
Diffstat (limited to 'Userland/Services/SQLServer/SQLClient.ipc')
-rw-r--r-- | Userland/Services/SQLServer/SQLClient.ipc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Userland/Services/SQLServer/SQLClient.ipc b/Userland/Services/SQLServer/SQLClient.ipc index e5b87110f4..15d3533333 100644 --- a/Userland/Services/SQLServer/SQLClient.ipc +++ b/Userland/Services/SQLServer/SQLClient.ipc @@ -2,11 +2,8 @@ endpoint SQLClient { - connected(u64 connection_id, DeprecatedString connected_to_database) =| - connection_error(u64 connection_id, SQL::SQLErrorCode code, DeprecatedString message) =| execution_success(u64 statement_id, u64 execution_id, bool has_results, size_t created, size_t updated, size_t deleted) =| next_result(u64 statement_id, u64 execution_id, Vector<DeprecatedString> row) =| results_exhausted(u64 statement_id, u64 execution_id, size_t total_rows) =| execution_error(u64 statement_id, u64 execution_id, SQL::SQLErrorCode code, DeprecatedString message) =| - disconnected(u64 connection_id) =| } |