mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-30 13:19:02 +00:00
SQLServer+SQLStudio+sql: Allow sending placeholder values to SQLServer
This commit is contained in:
parent
b13527b8b2
commit
8fcb8c30c6
Notes:
sideshowbarker
2024-07-17 05:02:42 +09:00
Author: https://github.com/trflynn89
Commit: 8fcb8c30c6
Pull-request: https://github.com/SerenityOS/serenity/pull/16324
7 changed files with 16 additions and 10 deletions
|
@ -7,6 +7,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <AK/HashMap.h>
|
||||
#include <AK/Vector.h>
|
||||
#include <LibIPC/ConnectionFromClient.h>
|
||||
#include <SQLServer/SQLClientEndpoint.h>
|
||||
#include <SQLServer/SQLServerEndpoint.h>
|
||||
|
@ -29,7 +30,7 @@ private:
|
|||
|
||||
virtual Messages::SQLServer::ConnectResponse connect(DeprecatedString const&) override;
|
||||
virtual Messages::SQLServer::PrepareStatementResponse prepare_statement(int, DeprecatedString const&) override;
|
||||
virtual void execute_statement(int) override;
|
||||
virtual void execute_statement(int, Vector<SQL::Value> const& placeholder_values) override;
|
||||
virtual void disconnect(int) override;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue