mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 23:27:43 +00:00
SQLServer+SQLStudio+sql: Rename a couple of SQL IPC commands for clarity
Rename sql_statement to prepare_statement and statement_execute to execute_statement. The former aligns more with other database libraries (e.g. Java's JDBC prepareStatement). The latter reads less awkwardly.
This commit is contained in:
parent
17988bab75
commit
0986b383cd
7 changed files with 17 additions and 17 deletions
|
@ -1,7 +1,7 @@
|
|||
endpoint SQLServer
|
||||
{
|
||||
connect(String name) => (int connection_id)
|
||||
sql_statement(int connection_id, String statement) => (int statement_id)
|
||||
statement_execute(int statement_id) =|
|
||||
prepare_statement(int connection_id, String statement) => (int statement_id)
|
||||
execute_statement(int statement_id) =|
|
||||
disconnect(int connection_id) =|
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue