| 889 | } |
| 890 | |
| 891 | ISC_STATUS ISC_EXPORT IscProvider::isc_attach_database(FbStatusVector* user_status, |
| 892 | short file_length, const char* file_name, isc_db_handle* public_handle, |
| 893 | short dpb_length, const char* dpb) |
| 894 | { |
| 895 | if (!m_api.attach_database) |
| 896 | return notImplemented(user_status); |
| 897 | |
| 898 | return (*m_api.attach_database) (IscStatus(user_status), file_length, file_name, |
| 899 | public_handle, dpb_length, dpb); |
| 900 | } |
| 901 | |
| 902 | ISC_STATUS ISC_EXPORT IscProvider::isc_array_gen_sdl(FbStatusVector* user_status, |
| 903 | const ISC_ARRAY_DESC*, short*, char*, short*) |