summaryrefslogtreecommitdiff
path: root/Userland/Utilities
diff options
context:
space:
mode:
authorTimothy Flynn <trflynn89@pm.me>2022-12-02 08:17:50 -0500
committerAndreas Kling <kling@serenityos.org>2022-12-07 13:09:00 +0100
commit8fcb8c30c68b6167a6b49a4144afe8ec6633f27f (patch)
tree039a7158f68c49c25069b0db8b4ed5df5438cf18 /Userland/Utilities
parentb13527b8b29adb45625bef529e43f6ed7ac1c3a7 (diff)
downloadserenity-8fcb8c30c68b6167a6b49a4144afe8ec6633f27f.zip
SQLServer+SQLStudio+sql: Allow sending placeholder values to SQLServer
Diffstat (limited to 'Userland/Utilities')
-rw-r--r--Userland/Utilities/sql.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Utilities/sql.cpp b/Userland/Utilities/sql.cpp
index f271e2a27d..94e7050426 100644
--- a/Userland/Utilities/sql.cpp
+++ b/Userland/Utilities/sql.cpp
@@ -292,7 +292,7 @@ private:
});
} else {
auto statement_id = m_sql_client->prepare_statement(m_connection_id, piece);
- m_sql_client->async_execute_statement(statement_id);
+ m_sql_client->async_execute_statement(statement_id, {});
}
// ...But m_keep_running can also be set to false by a command handler.