DSQL_sql_info @brief Provide information on dsql statement @param user_status @param req_handle @param item_length @param items @param info_length @param info **/
| 311 | |
| 312 | **/ |
| 313 | void DSQL_sql_info(thread_db* tdbb, |
| 314 | DsqlRequest* dsqlRequest, |
| 315 | ULONG item_length, const UCHAR* items, |
| 316 | ULONG info_length, UCHAR* info) |
| 317 | { |
| 318 | SET_TDBB(tdbb); |
| 319 | |
| 320 | Jrd::ContextPoolHolder context(tdbb, &dsqlRequest->getPool()); |
| 321 | |
| 322 | sql_info(tdbb, dsqlRequest, item_length, items, info_length, info); |
| 323 | } |
| 324 | |
| 325 | |
| 326 | // Common part of prepare and execute a statement. |