From 4d7fabe2eae09068e0c3bb47e1b0d5d08df11e45 Mon Sep 17 00:00:00 2001 From: WolverinDEV Date: Sat, 22 Aug 2020 21:34:34 +0200 Subject: [PATCH] Fixed MySQL --- src/Error.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/Error.h b/src/Error.h index 806108b..e8dcc52 100644 --- a/src/Error.h +++ b/src/Error.h @@ -24,9 +24,15 @@ namespace ts { undefined = 0x1, not_implemented = 0x2, lib_time_limit_reached = 0x5, + command_not_found = 0x100, unable_to_bind_network_port = 0x101, no_network_port_available = 0x102, + + /* Mainly used by the TeaClient */ + command_timed_out = 0x110, + command_aborted_connection_closed = 0x111, + client_invalid_id = 0x200, client_nickname_inuse = 0x201, invalid_error_code = 0x202, @@ -97,6 +103,7 @@ namespace ts { database_no_modifications = 0x503, database_constraint = 0x504, database_reinvoke = 0x505, + parameter_quote = 0x600, parameter_invalid_count = 0x601, parameter_invalid = 0x602,