diff options
Diffstat (limited to 'Userland/Services/SQLServer/ConnectionFromClient.h')
-rw-r--r-- | Userland/Services/SQLServer/ConnectionFromClient.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Userland/Services/SQLServer/ConnectionFromClient.h b/Userland/Services/SQLServer/ConnectionFromClient.h index 1c6f612d83..05e2186e03 100644 --- a/Userland/Services/SQLServer/ConnectionFromClient.h +++ b/Userland/Services/SQLServer/ConnectionFromClient.h @@ -29,9 +29,9 @@ private: explicit ConnectionFromClient(NonnullOwnPtr<Core::Stream::LocalSocket>, int client_id); virtual Messages::SQLServer::ConnectResponse connect(DeprecatedString const&) override; - virtual Messages::SQLServer::PrepareStatementResponse prepare_statement(int, DeprecatedString const&) override; - virtual void execute_statement(int, Vector<SQL::Value> const& placeholder_values) override; - virtual void disconnect(int) override; + virtual Messages::SQLServer::PrepareStatementResponse prepare_statement(u64, DeprecatedString const&) override; + virtual void execute_statement(u64, Vector<SQL::Value> const& placeholder_values) override; + virtual void disconnect(u64) override; }; } |