| 1156 | } |
| 1157 | |
| 1158 | ISC_STATUS ISC_EXPORT IscProvider::isc_dsql_alloc_statement2(FbStatusVector* user_status, |
| 1159 | isc_db_handle* db_handle, isc_stmt_handle* stmt_handle) |
| 1160 | { |
| 1161 | if (!m_api.dsql_alloc_statement2) |
| 1162 | return notImplemented(user_status); |
| 1163 | |
| 1164 | return (*m_api.dsql_alloc_statement2) (IscStatus(user_status), db_handle, stmt_handle); |
| 1165 | } |
| 1166 | |
| 1167 | ISC_STATUS ISC_EXPORT IscProvider::isc_dsql_describe(FbStatusVector* user_status, |
| 1168 | isc_stmt_handle* stmt_handle, unsigned short dialect, XSQLDA* sqlda) |