mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 09:17:35 +00:00
SQLServer+SQLStudio+sql: Allow sending placeholder values to SQLServer
This commit is contained in:
parent
b13527b8b2
commit
8fcb8c30c6
7 changed files with 16 additions and 10 deletions
|
@ -1,7 +1,9 @@
|
|||
#include <LibSQL/Value.h>
|
||||
|
||||
endpoint SQLServer
|
||||
{
|
||||
connect(DeprecatedString name) => (int connection_id)
|
||||
prepare_statement(int connection_id, DeprecatedString statement) => (int statement_id)
|
||||
execute_statement(int statement_id) =|
|
||||
execute_statement(int statement_id, Vector<SQL::Value> placeholder_values) =|
|
||||
disconnect(int connection_id) =|
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue