3.83.14. GetServiceQueryParam Previous topic Parent topic Child topic Next topic

This optional string array enables the use of SQL bind variables with GetServiceQuery. Set GetServiceQuery using the SQL bind variables or without them. If you use the SQL bind variables, you must specify all query parameters with respective GetServiceQueryParams. Here is an example of using the SQL bind variables:
GetServiceQuery SELECT price, duration, replyattributes FROM services WHERE serviceclass=?
GetServiceQueryParam %0
The same query without the SQL bind variables looks this:
GetServiceQuery SELECT price, duration, replyattributes FROM services WHERE serviceclass=%0
For more information about SQL bind variables, see Section 3.8.1. SQL bind variables.