ladybird/Userland/Services/SQLServer/SQLServer.ipc

10 lines
370 B
Plaintext
Raw Normal View History

#include <LibSQL/Value.h>
endpoint SQLServer
{
connect(DeprecatedString name) => (Optional<u64> connection_id)
prepare_statement(u64 connection_id, DeprecatedString statement) => (Optional<u64> statement_id)
execute_statement(u64 statement_id, Vector<SQL::Value> placeholder_values) => (Optional<u64> execution_id)
disconnect(u64 connection_id) => ()
}