| 1277 | } |
| 1278 | |
| 1279 | ISC_STATUS ISC_EXPORT IscProvider::isc_dsql_sql_info(FbStatusVector* user_status, |
| 1280 | isc_stmt_handle* stmt_handle, short items_len, const unsigned char* items, |
| 1281 | short buffer_len, unsigned char* buffer) |
| 1282 | { |
| 1283 | if (!m_api.dsql_sql_info) |
| 1284 | return notImplemented(user_status); |
| 1285 | |
| 1286 | return (*m_api.dsql_sql_info) (IscStatus(user_status), stmt_handle, items_len, reinterpret_cast<const ISC_SCHAR*>(items), |
| 1287 | buffer_len, reinterpret_cast<ISC_SCHAR*>(buffer)); |
| 1288 | } |
| 1289 | |
| 1290 | void ISC_EXPORT IscProvider::isc_encode_date(const void*, |
| 1291 | ISC_QUAD *) |