-
Notifications
You must be signed in to change notification settings - Fork 387
Closed
Description
This feature is connected with sql cache #2592 but since client API isn't affected by sql cache API needs it.
We need server side prepare call which should return information about sql statement. After prepare server can put the statement into sql cache. The minimum information is number of bind parameters in sql statement. Without such information client API should parse sql statement them-self which we should avoid.
The main idea behind sql bind variables is ability to execute current statement multiple times.
bofm