summaryrefslogtreecommitdiff
path: root/Userland/Services/SQLServer/SQLClient.ipc
blob: c33e4fff3d21d86b85aa39dd06187308d5654adc (plain)
1
2
3
4
5
6
7
8
9
10
endpoint SQLClient
{
    connected(int connection_id, DeprecatedString connected_to_database) =|
    connection_error(int connection_id, int code, DeprecatedString message) =|
    execution_success(int statement_id, bool has_results, int created, int updated, int deleted) =|
    next_result(int statement_id, Vector<DeprecatedString> row) =|
    results_exhausted(int statement_id, int total_rows) =|
    execution_error(int statement_id, int code, DeprecatedString message) =|
    disconnected(int connection_id) =|
}