home *** CD-ROM | disk | FTP | other *** search
- /*
- * MODULE: ibase.h
- * DESCRIPTION: OSRI entrypoints and defines
- *
- * copyright (c) 1998 by InterBase Software Corporation
- * copyright (c) 1996 by Borland International
- */
-
- #ifndef _JRD_IBASE_H_
- #define _JRD_IBASE_H_
-
- #ifndef HARBOR_MERGE
- #define HARBOR_MERGE
- #endif
-
- #define isc_version4
-
- #define ISC_TRUE 1
- #define ISC_FALSE 0
- #if !(defined __cplusplus)
- #define ISC__TRUE ISC_TRUE
- #define ISC__FALSE ISC_FALSE
- #endif
-
- #if (defined __osf__ && defined __alpha)
- #define ISC_LONG int
- #else
- #define ISC_LONG long
- #endif
-
- #define ISC_STATUS long
-
- #define DSQL_close 1
- #define DSQL_drop 2
-
-
- /******************************************************************/
- /* Define type, export and other stuff based on c/c++ and Windows */
- /******************************************************************/
-
- #if (defined(_MSC_VER) && defined(WIN32)) || \
- (defined(__BORLANDC__) && (defined(__WIN32__) || defined(__OS2__)))
- #define ISC_FAR
- #define ISC_EXPORT __stdcall
- #define ISC_EXPORT_VARARG __cdecl
- #else /* Not Windows/NT */
- #if (defined(__IBMC__) && defined(__OS2__))
- #define ISC_FAR
- #define ISC_EXPORT _System
- #define ISC_EXPORT_VARARG ISC_EXPORT
- #else /* not IBM C Set++ for OS/2 */
- #if ( defined( _Windows) || defined( _WINDOWS))
- #define ISC_FAR __far
- #define ISC_EXPORT ISC_FAR __cdecl __loadds __export
- #define ISC_EXPORT_VARARG ISC_EXPORT
- #else /* Not Windows/NT, OS/2 or Windows */
- #define ISC_FAR
- #define ISC_EXPORT
- #define ISC_EXPORT_VARARG
- #endif /* Windows and Not Windows/NT or OS/2 */
- #endif /* IBM C Set++ for OS/2 */
- #endif /* Windows/NT */
-
- /*******************************************************************/
- /* Blob id structure */
- /*******************************************************************/
-
- typedef struct {
- ISC_LONG gds_quad_high;
- unsigned ISC_LONG gds_quad_low;
- } GDS_QUAD;
- #if !(defined __cplusplus)
- typedef GDS_QUAD GDS__QUAD;
- #endif /* !(defined __cplusplus) */
-
- #define ISC_QUAD GDS_QUAD
- #define isc_quad_high gds_quad_high
- #define isc_quad_low gds_quad_low
-
- typedef struct {
- short array_bound_lower;
- short array_bound_upper;
- } ISC_ARRAY_BOUND;
-
- typedef struct {
- unsigned char array_desc_dtype;
- char array_desc_scale;
- unsigned short array_desc_length;
- char array_desc_field_name [32];
- char array_desc_relation_name [32];
- short array_desc_dimensions;
- short array_desc_flags;
- ISC_ARRAY_BOUND array_desc_bounds [16];
- } ISC_ARRAY_DESC;
-
- typedef struct {
- short blob_desc_subtype;
- short blob_desc_charset;
- short blob_desc_segment_size;
- unsigned char blob_desc_field_name [32];
- unsigned char blob_desc_relation_name [32];
- } ISC_BLOB_DESC;
-
-
- /***************************/
- /* Blob control structure */
- /***************************/
-
- typedef struct isc_blob_ctl{
- ISC_STATUS (ISC_FAR *ctl_source)(); /* Source filter */
- struct isc_blob_ctl ISC_FAR *ctl_source_handle; /* Argument to pass to source */
- /* filter */
- short ctl_to_sub_type; /* Target type */
- short ctl_from_sub_type; /* Source type */
- unsigned short ctl_buffer_length; /* Length of buffer */
- unsigned short ctl_segment_length; /* Length of current segment */
- unsigned short ctl_bpb_length; /* Length of blob parameter */
- /* block */
- char ISC_FAR *ctl_bpb; /* Address of blob parameter */
- /* block */
- unsigned char ISC_FAR *ctl_buffer; /* Address of segment buffer */
- ISC_LONG ctl_max_segment; /* Length of longest segment */
- ISC_LONG ctl_number_segments; /* Total number of segments */
- ISC_LONG ctl_total_length; /* Total length of blob */
- ISC_STATUS ISC_FAR *ctl_status; /* Address of status vector */
- long ctl_data [8]; /* Application specific data */
- } ISC_FAR *ISC_BLOB_CTL;
-
- /***************************/
- /* Blob stream definitions */
- /***************************/
-
- typedef struct bstream {
- void ISC_FAR *bstr_blob; /* Blob handle */
- char ISC_FAR *bstr_buffer; /* Address of buffer */
- char ISC_FAR *bstr_ptr; /* Next character */
- short bstr_length; /* Length of buffer */
- short bstr_cnt; /* Characters in buffer */
- char bstr_mode; /* (mode) ? OUTPUT : INPUT */
- } BSTREAM;
-
- #define getb(p) (--(p)->bstr_cnt >= 0 ? *(p)->bstr_ptr++ & 0377: BLOB_get (p))
- #define putb(x,p) ((x == '\n' || (!(--(p)->bstr_cnt))) ? BLOB_put (x,p) : ((int) (*(p)->bstr_ptr++ = (unsigned) (x))))
- #define putbx(x,p) ((!(--(p)->bstr_cnt)) ? BLOB_put (x,p) : ((int) (*(p)->bstr_ptr++ = (unsigned) (x))))
-
- /***************************/
- /* Dynamic SQL definitions */
- /***************************/
-
- typedef struct {
- short sqltype;
- short sqllen;
- char ISC_FAR *sqldata;
- short ISC_FAR *sqlind;
- short sqlname_length;
- char sqlname [30];
- } SQLVAR;
-
- typedef struct {
- char sqldaid [8];
- ISC_LONG sqldabc;
- short sqln;
- short sqld;
- SQLVAR sqlvar [1];
- } SQLDA;
-
- #define SQLDA_LENGTH(n) (sizeof (SQLDA) + (n-1) * sizeof (SQLVAR))
-
- /******************************/
- /* Declare the extended SQLDA */
- /******************************/
-
- typedef struct {
- short sqltype; /* datatype of field */
- short sqlscale; /* scale factor */
- short sqlsubtype; /* datatype subtype - BLOBs & Text */
- /* types only */
- short sqllen; /* length of data area */
- char ISC_FAR *sqldata; /* address of data */
- short ISC_FAR *sqlind; /* address of indicator variable */
- short sqlname_length; /* length of sqlname field */
- char sqlname [32]; /* name of field, name length + space */
- /* for NULL */
- short relname_length; /* length of relation name */
- char relname [32]; /* field's relation name + space for */
- /* NULL */
- short ownname_length; /* length of owner name */
- char ownname [32]; /* relation's owner name + space for */
- /* NULL */
- short aliasname_length; /* length of alias name */
- char aliasname [32]; /* relation's alias name + space for */
- /* NULL */
- } XSQLVAR;
-
- typedef struct {
- short version; /* version of this XSQLDA */
- char sqldaid [8]; /* XSQLDA name field */
- ISC_LONG sqldabc; /* length in bytes of SQLDA */
- short sqln; /* number of fields allocated */
- short sqld; /* actual number of fields */
- XSQLVAR sqlvar [1]; /* first field address */
- } XSQLDA;
-
- #define XSQLDA_LENGTH(n) (sizeof (XSQLDA) + (n-1) * sizeof (XSQLVAR))
-
- /********************************/
- /* InterBase Handle Definitions */
- /********************************/
-
- typedef void ISC_FAR *isc_att_handle;
-
- typedef void ISC_FAR *isc_blob_handle;
- typedef void ISC_FAR *isc_db_handle;
- typedef void ISC_FAR *isc_form_handle;
- typedef void ISC_FAR *isc_req_handle;
- typedef void ISC_FAR *isc_stmt_handle;
- typedef void ISC_FAR *isc_svc_handle;
- typedef void ISC_FAR *isc_tr_handle;
- typedef void ISC_FAR *isc_win_handle;
- typedef void (ISC_FAR *isc_callback)();
-
- /***************************/
- /* OSRI database functions */
- /***************************/
-
- #if defined(__cplusplus) || defined(__STDC__) || defined(_Windows) || \
- (defined(_MSC_VER) && defined(WIN32)) || defined( _WINDOWS) || \
- (defined(__BORLANDC__) && (defined(__WIN32__) || defined(__OS2__))) || \
- (defined(__IBMC__) && defined(__OS2__))
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- ISC_STATUS ISC_EXPORT isc_attach_database (ISC_STATUS ISC_FAR *,
- short,
- char ISC_FAR *,
- isc_db_handle ISC_FAR *,
- short,
- char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_array_gen_sdl (ISC_STATUS ISC_FAR *,
- ISC_ARRAY_DESC ISC_FAR *,
- short ISC_FAR *,
- char ISC_FAR *,
- short ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_array_get_slice (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- ISC_QUAD ISC_FAR *,
- ISC_ARRAY_DESC ISC_FAR *,
- void ISC_FAR *,
- ISC_LONG ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_array_lookup_bounds (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- char ISC_FAR *,
- char ISC_FAR *,
- ISC_ARRAY_DESC ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_array_lookup_desc (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- char ISC_FAR *,
- char ISC_FAR *,
- ISC_ARRAY_DESC ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_array_set_desc (ISC_STATUS ISC_FAR *,
- char ISC_FAR *,
- char ISC_FAR *,
- short ISC_FAR *,
- short ISC_FAR *,
- short ISC_FAR *,
- ISC_ARRAY_DESC ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_array_put_slice (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- ISC_QUAD ISC_FAR *,
- ISC_ARRAY_DESC ISC_FAR *,
- void ISC_FAR *,
- ISC_LONG ISC_FAR *);
-
- void ISC_EXPORT isc_blob_default_desc (ISC_BLOB_DESC ISC_FAR *,
- unsigned char ISC_FAR *,
- unsigned char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_blob_gen_bpb (ISC_STATUS ISC_FAR *,
- ISC_BLOB_DESC ISC_FAR *,
- ISC_BLOB_DESC ISC_FAR *,
- unsigned short,
- unsigned char ISC_FAR *,
- unsigned short ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_blob_info (ISC_STATUS ISC_FAR *,
- isc_blob_handle ISC_FAR *,
- short,
- char ISC_FAR *,
- short,
- char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_blob_lookup_desc (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- unsigned char ISC_FAR *,
- unsigned char ISC_FAR *,
- ISC_BLOB_DESC ISC_FAR *,
- unsigned char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_blob_set_desc (ISC_STATUS ISC_FAR *,
- unsigned char ISC_FAR *,
- unsigned char ISC_FAR *,
- short,
- short,
- short,
- ISC_BLOB_DESC ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_cancel_blob (ISC_STATUS ISC_FAR *,
- isc_blob_handle ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_cancel_events (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- ISC_LONG ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_close_blob (ISC_STATUS ISC_FAR *,
- isc_blob_handle ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_commit_retaining (ISC_STATUS ISC_FAR *,
- isc_tr_handle ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_commit_transaction (ISC_STATUS ISC_FAR *,
- isc_tr_handle ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_create_blob (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- isc_blob_handle ISC_FAR *,
- ISC_QUAD ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_create_blob2 (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- isc_blob_handle ISC_FAR *,
- ISC_QUAD ISC_FAR *,
- short,
- char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_create_database (ISC_STATUS ISC_FAR *,
- short,
- char ISC_FAR *,
- isc_db_handle ISC_FAR *,
- short,
- char ISC_FAR *,
- short);
-
- ISC_STATUS ISC_EXPORT isc_database_info (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- short,
- char ISC_FAR *,
- short,
- char ISC_FAR *);
-
- void ISC_EXPORT isc_decode_date (ISC_QUAD ISC_FAR *,
- void ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_detach_database (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_drop_database (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_dsql_allocate_statement (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- isc_stmt_handle ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_dsql_alloc_statement2 (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- isc_stmt_handle ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_dsql_describe (ISC_STATUS ISC_FAR *,
- isc_stmt_handle ISC_FAR *,
- unsigned short,
- XSQLDA ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_dsql_describe_bind (ISC_STATUS ISC_FAR *,
- isc_stmt_handle ISC_FAR *,
- unsigned short,
- XSQLDA ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_dsql_exec_immed2 (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- unsigned short,
- char ISC_FAR *,
- unsigned short,
- XSQLDA ISC_FAR *,
- XSQLDA ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_dsql_execute (ISC_STATUS ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- isc_stmt_handle ISC_FAR *,
- unsigned short,
- XSQLDA ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_dsql_execute2 (ISC_STATUS ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- isc_stmt_handle ISC_FAR *,
- unsigned short,
- XSQLDA ISC_FAR *,
- XSQLDA ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_dsql_execute_immediate (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- unsigned short,
- char ISC_FAR *,
- unsigned short,
- XSQLDA ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_dsql_fetch (ISC_STATUS ISC_FAR *,
- isc_stmt_handle ISC_FAR *,
- unsigned short,
- XSQLDA ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_dsql_finish (isc_db_handle ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_dsql_free_statement (ISC_STATUS ISC_FAR *,
- isc_stmt_handle ISC_FAR *,
- unsigned short);
-
- ISC_STATUS ISC_EXPORT isc_dsql_insert (ISC_STATUS ISC_FAR *,
- isc_stmt_handle ISC_FAR *,
- unsigned short,
- XSQLDA ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_dsql_prepare (ISC_STATUS ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- isc_stmt_handle ISC_FAR *,
- unsigned short,
- char ISC_FAR *,
- unsigned short,
- XSQLDA ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_dsql_set_cursor_name (ISC_STATUS ISC_FAR *,
- isc_stmt_handle ISC_FAR *,
- char ISC_FAR *,
- unsigned short);
-
- ISC_STATUS ISC_EXPORT isc_dsql_sql_info (ISC_STATUS ISC_FAR *,
- isc_stmt_handle ISC_FAR *,
- short,
- char ISC_FAR *,
- short,
- char ISC_FAR *);
-
- void ISC_EXPORT isc_encode_date (void ISC_FAR *,
- ISC_QUAD ISC_FAR *);
-
- ISC_LONG ISC_EXPORT_VARARG isc_event_block (char ISC_FAR * ISC_FAR *,
- char ISC_FAR * ISC_FAR *,
- unsigned short, ...);
-
- void ISC_EXPORT isc_event_counts (unsigned ISC_LONG ISC_FAR *,
- short,
- char ISC_FAR *,
- char ISC_FAR *);
-
- void ISC_EXPORT_VARARG isc_expand_dpb (char ISC_FAR * ISC_FAR *,
- short ISC_FAR *,
- ...);
-
- int ISC_EXPORT isc_modify_dpb (char ISC_FAR * ISC_FAR *,
- short ISC_FAR *, unsigned short,
- char ISC_FAR *, short );
-
- ISC_LONG ISC_EXPORT isc_free (char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_get_segment (ISC_STATUS ISC_FAR *,
- isc_blob_handle ISC_FAR *,
- unsigned short ISC_FAR *,
- unsigned short,
- char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_get_slice (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- ISC_QUAD ISC_FAR *,
- short,
- char ISC_FAR *,
- short,
- ISC_LONG ISC_FAR *,
- ISC_LONG,
- void ISC_FAR *,
- ISC_LONG ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_interprete (char ISC_FAR *,
- ISC_STATUS ISC_FAR * ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_open_blob (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- isc_blob_handle ISC_FAR *,
- ISC_QUAD ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_open_blob2 (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- isc_blob_handle ISC_FAR *,
- ISC_QUAD ISC_FAR *,
- short,
- char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_prepare_transaction2 (ISC_STATUS ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- short,
- char ISC_FAR *);
-
- void ISC_EXPORT isc_print_sqlerror (short,
- ISC_STATUS ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_print_status (ISC_STATUS ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_put_segment (ISC_STATUS ISC_FAR *,
- isc_blob_handle ISC_FAR *,
- unsigned short,
- char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_put_slice (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- ISC_QUAD ISC_FAR *,
- short,
- char ISC_FAR *,
- short,
- ISC_LONG ISC_FAR *,
- ISC_LONG,
- void ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_que_events (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- ISC_LONG ISC_FAR *,
- short,
- char ISC_FAR *,
- isc_callback,
- void ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_rollback_transaction (ISC_STATUS ISC_FAR *,
- isc_tr_handle ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_start_multiple (ISC_STATUS ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- short,
- void ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT_VARARG isc_start_transaction (ISC_STATUS ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- short, ...);
-
- ISC_LONG ISC_EXPORT isc_sqlcode (ISC_STATUS ISC_FAR *);
-
- void ISC_EXPORT isc_sql_interprete (short,
- char ISC_FAR *,
- short);
-
- ISC_STATUS ISC_EXPORT isc_transaction_info (ISC_STATUS ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- short,
- char ISC_FAR *,
- short,
- char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_transact_request (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- unsigned short,
- char ISC_FAR *,
- unsigned short,
- char ISC_FAR *,
- unsigned short,
- char ISC_FAR *);
-
- ISC_LONG ISC_EXPORT isc_vax_integer (char ISC_FAR *,
- short);
-
-
- /*************************************/
- /* Security Functions and structures */
- /*************************************/
-
- #define sec_uid_spec 0x01
- #define sec_gid_spec 0x02
- #define sec_server_spec 0x04
- #define sec_password_spec 0x08
- #define sec_group_name_spec 0x10
- #define sec_first_name_spec 0x20
- #define sec_middle_name_spec 0x40
- #define sec_last_name_spec 0x80
- #define sec_dba_user_name_spec 0x100
- #define sec_dba_password_spec 0x200
-
- #define sec_protocol_tcpip 1
- #define sec_protocol_netbeui 2
- #define sec_protocol_spx 3
- #define sec_protocol_local 4
-
- typedef struct {
- short sec_flags; /* which fields are specified */
- int uid; /* the user's id */
- int gid; /* the user's group id */
- int protocol; /* protocol to use for connection */
- char ISC_FAR *server; /* server to administer */
- char ISC_FAR *user_name; /* the user's name */
- char ISC_FAR *password; /* the user's password */
- char ISC_FAR *group_name; /* the group name */
- char ISC_FAR *first_name; /* the user's first name */
- char ISC_FAR *middle_name; /* the user's middle name */
- char ISC_FAR *last_name; /* the user's last name */
- char ISC_FAR *dba_user_name; /* the dba user name */
- char ISC_FAR *dba_password; /* the dba password */
- } USER_SEC_DATA;
-
- int ISC_EXPORT isc_add_user (ISC_STATUS ISC_FAR *, USER_SEC_DATA *);
-
- int ISC_EXPORT isc_delete_user (ISC_STATUS ISC_FAR *, USER_SEC_DATA *);
-
- int ISC_EXPORT isc_modify_user (ISC_STATUS ISC_FAR *, USER_SEC_DATA *);
-
- /**********************************/
- /* Other OSRI functions */
- /**********************************/
-
- ISC_STATUS ISC_EXPORT isc_compile_request (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- isc_req_handle ISC_FAR *,
- short,
- char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_compile_request2 (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- isc_req_handle ISC_FAR *,
- short,
- char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_ddl (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- short,
- char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_prepare_transaction (ISC_STATUS ISC_FAR *,
- isc_tr_handle ISC_FAR *);
-
-
- ISC_STATUS ISC_EXPORT isc_receive (ISC_STATUS ISC_FAR *,
- isc_req_handle ISC_FAR *,
- short,
- short,
- void ISC_FAR *,
- short);
-
- ISC_STATUS ISC_EXPORT isc_reconnect_transaction (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- short,
- char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_release_request (ISC_STATUS ISC_FAR *,
- isc_req_handle ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_request_info (ISC_STATUS ISC_FAR *,
- isc_req_handle ISC_FAR *,
- short,
- short,
- char ISC_FAR *,
- short,
- char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_seek_blob (ISC_STATUS ISC_FAR *,
- isc_blob_handle ISC_FAR *,
- short,
- ISC_LONG,
- ISC_LONG ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_send (ISC_STATUS ISC_FAR *,
- isc_req_handle ISC_FAR *,
- short,
- short,
- void ISC_FAR *,
- short);
-
- ISC_STATUS ISC_EXPORT isc_start_and_send (ISC_STATUS ISC_FAR *,
- isc_req_handle ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- short,
- short,
- void ISC_FAR *,
- short);
-
- ISC_STATUS ISC_EXPORT isc_start_request (ISC_STATUS ISC_FAR *,
- isc_req_handle ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- short);
-
- ISC_STATUS ISC_EXPORT isc_unwind_request (ISC_STATUS ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- short);
-
- ISC_STATUS ISC_EXPORT isc_wait_for_event (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- short,
- char ISC_FAR *,
- char ISC_FAR *);
-
- /*****************************/
- /* Other Sql functions */
- /*****************************/
-
- ISC_STATUS ISC_EXPORT isc_close (ISC_STATUS ISC_FAR *,
- char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_declare (ISC_STATUS ISC_FAR *,
- char ISC_FAR *,
- char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_describe (ISC_STATUS ISC_FAR *,
- char ISC_FAR *,
- SQLDA ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_describe_bind (ISC_STATUS ISC_FAR *,
- char ISC_FAR *,
- SQLDA ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_execute (ISC_STATUS ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- char ISC_FAR *,
- SQLDA ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_execute_immediate (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- short ISC_FAR *,
- char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_fetch (ISC_STATUS ISC_FAR *,
- char ISC_FAR *,
- SQLDA ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_open (ISC_STATUS ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- char ISC_FAR *,
- SQLDA ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_prepare (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- char ISC_FAR *,
- short ISC_FAR *,
- char ISC_FAR *,
- SQLDA ISC_FAR *);
-
- /*************************************/
- /* Other Dynamic sql functions */
- /*************************************/
-
- ISC_STATUS ISC_EXPORT isc_dsql_execute_m (ISC_STATUS ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- isc_stmt_handle ISC_FAR *,
- unsigned short,
- char ISC_FAR *,
- unsigned short,
- unsigned short,
- char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_dsql_execute2_m (ISC_STATUS ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- isc_stmt_handle ISC_FAR *,
- unsigned short,
- char ISC_FAR *,
- unsigned short,
- unsigned short,
- char ISC_FAR *,
- unsigned short,
- char ISC_FAR *,
- unsigned short,
- unsigned short,
- char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_dsql_execute_immediate_m (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- unsigned short,
- char ISC_FAR *,
- unsigned short,
- unsigned short,
- char ISC_FAR *,
- unsigned short,
- unsigned short,
- char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_dsql_exec_immed3_m (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- unsigned short,
- char ISC_FAR *,
- unsigned short,
- unsigned short,
- char ISC_FAR *,
- unsigned short,
- unsigned short,
- char ISC_FAR *,
- unsigned short,
- char ISC_FAR *,
- unsigned short,
- unsigned short,
- char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_dsql_fetch_m (ISC_STATUS ISC_FAR *,
- isc_stmt_handle ISC_FAR *,
- unsigned short,
- char ISC_FAR *,
- unsigned short,
- unsigned short,
- char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_dsql_insert_m (ISC_STATUS ISC_FAR *,
- isc_stmt_handle ISC_FAR *,
- unsigned short,
- char ISC_FAR *,
- unsigned short,
- unsigned short,
- char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_dsql_prepare_m (ISC_STATUS ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- isc_stmt_handle ISC_FAR *,
- unsigned short,
- char ISC_FAR *,
- unsigned short,
- unsigned short,
- char ISC_FAR *,
- unsigned short,
- char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_dsql_release (ISC_STATUS ISC_FAR *,
- char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_embed_dsql_close (ISC_STATUS ISC_FAR *,
- char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_embed_dsql_declare (ISC_STATUS ISC_FAR *,
- char ISC_FAR *,
- char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_embed_dsql_describe (ISC_STATUS ISC_FAR *,
- char ISC_FAR *,
- unsigned short,
- XSQLDA ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_embed_dsql_describe_bind (ISC_STATUS ISC_FAR *,
- char ISC_FAR *,
- unsigned short,
- XSQLDA ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_embed_dsql_execute (ISC_STATUS ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- char ISC_FAR *,
- unsigned short,
- XSQLDA ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_embed_dsql_execute2 (ISC_STATUS ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- char ISC_FAR *,
- unsigned short,
- XSQLDA ISC_FAR *,
- XSQLDA ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_embed_dsql_execute_immed (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- unsigned short,
- char ISC_FAR *,
- unsigned short,
- XSQLDA ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_embed_dsql_fetch (ISC_STATUS ISC_FAR *,
- char ISC_FAR *,
- unsigned short,
- XSQLDA ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_embed_dsql_open (ISC_STATUS ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- char ISC_FAR *,
- unsigned short,
- XSQLDA ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_embed_dsql_open2 (ISC_STATUS ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- char ISC_FAR *,
- unsigned short,
- XSQLDA ISC_FAR *,
- XSQLDA ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_embed_dsql_insert (ISC_STATUS ISC_FAR *,
- char ISC_FAR *,
- unsigned short,
- XSQLDA ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_embed_dsql_prepare (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- char ISC_FAR *,
- unsigned short,
- char ISC_FAR *,
- unsigned short,
- XSQLDA ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_embed_dsql_release (ISC_STATUS ISC_FAR *,
- char ISC_FAR *);
-
- /******************************/
- /* Other Blob functions */
- /******************************/
-
- BSTREAM ISC_FAR * ISC_EXPORT BLOB_open (isc_blob_handle,
- char ISC_FAR *,
- int);
-
- int ISC_EXPORT BLOB_put (char,
- BSTREAM ISC_FAR *);
-
- int ISC_EXPORT BLOB_close (BSTREAM ISC_FAR *);
-
- int ISC_EXPORT BLOB_get (BSTREAM ISC_FAR *);
-
- int ISC_EXPORT BLOB_display (ISC_QUAD ISC_FAR *,
- isc_db_handle,
- isc_tr_handle,
- char ISC_FAR *);
-
- int ISC_EXPORT BLOB_dump (ISC_QUAD ISC_FAR *,
- isc_db_handle,
- isc_tr_handle,
- char ISC_FAR *);
-
- int ISC_EXPORT BLOB_edit (ISC_QUAD ISC_FAR *,
- isc_db_handle,
- isc_tr_handle,
- char ISC_FAR *);
-
- int ISC_EXPORT BLOB_load (ISC_QUAD ISC_FAR *,
- isc_db_handle,
- isc_tr_handle,
- char ISC_FAR *);
-
- int ISC_EXPORT BLOB_text_dump (ISC_QUAD ISC_FAR *,
- isc_db_handle,
- isc_tr_handle,
- char ISC_FAR *);
-
- int ISC_EXPORT BLOB_text_load (ISC_QUAD ISC_FAR *,
- isc_db_handle,
- isc_tr_handle,
- char ISC_FAR *);
-
- BSTREAM ISC_FAR * ISC_EXPORT Bopen (ISC_QUAD ISC_FAR *,
- isc_db_handle,
- isc_tr_handle,
- char ISC_FAR *);
-
- BSTREAM ISC_FAR * ISC_EXPORT Bopen2 (ISC_QUAD ISC_FAR *,
- isc_db_handle,
- isc_tr_handle,
- char ISC_FAR *,
- unsigned short);
-
- /******************************/
- /* Other Misc functions */
- /******************************/
-
- ISC_LONG ISC_EXPORT isc_ftof (char ISC_FAR *,
- unsigned short,
- char ISC_FAR *,
- unsigned short);
-
- ISC_STATUS ISC_EXPORT isc_print_blr (char ISC_FAR *,
- isc_callback,
- void ISC_FAR *,
- short);
-
- void ISC_EXPORT isc_set_debug (int);
-
- void ISC_EXPORT isc_qtoq (ISC_QUAD ISC_FAR *,
- ISC_QUAD ISC_FAR *);
-
- void ISC_EXPORT isc_vtof (char ISC_FAR *,
- char ISC_FAR *,
- unsigned short);
-
- void ISC_EXPORT isc_vtov (char ISC_FAR *,
- char ISC_FAR *,
- short);
-
- int ISC_EXPORT isc_version (isc_db_handle ISC_FAR *,
- isc_callback,
- void ISC_FAR *);
-
- ISC_LONG ISC_EXPORT isc_reset_fpe (unsigned short);
-
- /*****************************************/
- /* Service manager functions */
- /*****************************************/
-
- ISC_STATUS ISC_EXPORT isc_attach_service (ISC_STATUS ISC_FAR *,
- unsigned short,
- char ISC_FAR *,
- isc_svc_handle ISC_FAR *,
- unsigned short,
- char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_detach_service (ISC_STATUS ISC_FAR *,
- isc_svc_handle ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_query_service (ISC_STATUS ISC_FAR *,
- isc_svc_handle ISC_FAR *,
- unsigned short,
- char ISC_FAR *,
- unsigned short,
- char ISC_FAR *,
- unsigned short,
- char ISC_FAR *);
-
- /*******************************/
- /* Forms functions */
- /*******************************/
-
- ISC_STATUS ISC_EXPORT isc_compile_map (ISC_STATUS ISC_FAR *,
- isc_form_handle ISC_FAR *,
- isc_req_handle ISC_FAR *,
- short ISC_FAR *,
- char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_compile_menu (ISC_STATUS ISC_FAR *,
- isc_form_handle ISC_FAR *,
- isc_req_handle ISC_FAR *,
- short ISC_FAR *,
- char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_compile_sub_map (ISC_STATUS ISC_FAR *,
- isc_win_handle ISC_FAR *,
- isc_req_handle ISC_FAR *,
- short ISC_FAR *,
- char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_create_window (ISC_STATUS ISC_FAR *,
- isc_win_handle ISC_FAR *,
- short ISC_FAR *,
- char ISC_FAR *,
- short ISC_FAR *,
- short ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_delete_window (ISC_STATUS ISC_FAR *,
- isc_win_handle ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_drive_form (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- isc_win_handle ISC_FAR *,
- isc_req_handle ISC_FAR *,
- unsigned char ISC_FAR *,
- unsigned char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_drive_menu (ISC_STATUS ISC_FAR *,
- isc_win_handle ISC_FAR *,
- isc_req_handle ISC_FAR *,
- short ISC_FAR *,
- char ISC_FAR *,
- short ISC_FAR *,
- char ISC_FAR *,
- short ISC_FAR *,
- short ISC_FAR *,
- char ISC_FAR *,
- ISC_LONG ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_form_delete (ISC_STATUS ISC_FAR *,
- isc_form_handle ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_form_fetch (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- isc_req_handle ISC_FAR *,
- unsigned char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_form_insert (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- isc_req_handle ISC_FAR *,
- unsigned char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_get_entree (ISC_STATUS ISC_FAR *,
- isc_req_handle ISC_FAR *,
- short ISC_FAR *,
- char ISC_FAR *,
- ISC_LONG ISC_FAR *,
- short ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_initialize_menu (ISC_STATUS ISC_FAR *,
- isc_req_handle ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_menu (ISC_STATUS ISC_FAR *,
- isc_win_handle ISC_FAR *,
- isc_req_handle ISC_FAR *,
- short ISC_FAR *,
- char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_load_form (ISC_STATUS ISC_FAR *,
- isc_db_handle ISC_FAR *,
- isc_tr_handle ISC_FAR *,
- isc_form_handle ISC_FAR *,
- short ISC_FAR *,
- char ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_pop_window (ISC_STATUS ISC_FAR *,
- isc_win_handle ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_put_entree (ISC_STATUS ISC_FAR *,
- isc_req_handle ISC_FAR *,
- short ISC_FAR *,
- char ISC_FAR *,
- ISC_LONG ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_reset_form (ISC_STATUS ISC_FAR *,
- isc_req_handle ISC_FAR *);
-
- ISC_STATUS ISC_EXPORT isc_suspend_window (ISC_STATUS ISC_FAR *,
- isc_win_handle ISC_FAR *);
-
- #ifdef __cplusplus
- };
- #endif
-
- #else /* __cplusplus || __STDC__ */
-
- ISC_STATUS ISC_EXPORT isc_attach_database();
- ISC_STATUS ISC_EXPORT isc_attach_service();
- ISC_STATUS ISC_EXPORT isc_array_gen_sdl();
- ISC_STATUS ISC_EXPORT isc_array_get_slice();
- ISC_STATUS ISC_EXPORT isc_array_lookup_bounds();
- ISC_STATUS ISC_EXPORT isc_array_lookup_desc();
- ISC_STATUS ISC_EXPORT isc_array_set_desc();
- ISC_STATUS ISC_EXPORT isc_array_put_slice();
- ISC_STATUS ISC_EXPORT isc_blob_gen_bpb();
- ISC_STATUS ISC_EXPORT isc_blob_info();
- ISC_STATUS ISC_EXPORT isc_blob_lookup_desc();
- ISC_STATUS ISC_EXPORT isc_blob_set_desc();
- ISC_STATUS ISC_EXPORT isc_cancel_blob();
- ISC_STATUS ISC_EXPORT isc_cancel_events();
- ISC_STATUS ISC_EXPORT isc_close_blob();
- ISC_STATUS ISC_EXPORT isc_commit_retaining();
- ISC_STATUS ISC_EXPORT isc_commit_transaction();
- ISC_STATUS ISC_EXPORT isc_compile_request();
- ISC_STATUS ISC_EXPORT isc_compile_request2();
- ISC_STATUS ISC_EXPORT isc_create_blob();
- ISC_STATUS ISC_EXPORT isc_create_blob2();
- ISC_STATUS ISC_EXPORT isc_create_database();
- ISC_STATUS ISC_EXPORT isc_database_info();
- ISC_STATUS ISC_EXPORT isc_ddl();
- void ISC_EXPORT isc_decode_date();
- ISC_STATUS ISC_EXPORT isc_detach_database();
- ISC_STATUS ISC_EXPORT isc_detach_service();
- ISC_STATUS ISC_EXPORT isc_drop_database();
- void ISC_EXPORT isc_encode_date();
- ISC_LONG ISC_EXPORT isc_event_block();
- void ISC_EXPORT isc_event_counts();
- void ISC_EXPORT isc_expand_dpb();
- int ISC_EXPORT isc_modify_dpb();
- ISC_LONG ISC_EXPORT isc_free();
- ISC_STATUS ISC_EXPORT isc_get_segment();
- ISC_STATUS ISC_EXPORT isc_get_slice();
- ISC_STATUS ISC_EXPORT isc_interprete();
- ISC_STATUS ISC_EXPORT isc_open_blob();
- ISC_STATUS ISC_EXPORT isc_open_blob2();
- ISC_STATUS ISC_EXPORT isc_prepare_transaction();
- ISC_STATUS ISC_EXPORT isc_prepare_transaction2();
- void ISC_EXPORT isc_print_sqlerror();
- ISC_STATUS ISC_EXPORT isc_print_status();
- ISC_STATUS ISC_EXPORT isc_put_segment();
- ISC_STATUS ISC_EXPORT isc_put_slice();
- ISC_STATUS ISC_EXPORT isc_que_events();
- ISC_STATUS ISC_EXPORT isc_query_service();
- ISC_STATUS ISC_EXPORT isc_receive();
- ISC_STATUS ISC_EXPORT isc_reconnect_transaction();
- ISC_STATUS ISC_EXPORT isc_release_request();
- ISC_STATUS ISC_EXPORT isc_request_info();
- ISC_STATUS ISC_EXPORT isc_rollback_transaction();
- ISC_STATUS ISC_EXPORT isc_seek_blob();
- ISC_STATUS ISC_EXPORT isc_send();
- ISC_STATUS ISC_EXPORT isc_start_and_send();
- ISC_STATUS ISC_EXPORT isc_start_multiple();
- ISC_STATUS ISC_EXPORT isc_start_request();
- ISC_STATUS ISC_EXPORT isc_start_transaction();
- ISC_LONG ISC_EXPORT isc_sqlcode();
- ISC_STATUS ISC_EXPORT isc_transaction_info();
- ISC_STATUS ISC_EXPORT isc_transact_request();
- ISC_STATUS ISC_EXPORT isc_unwind_request();
- ISC_STATUS ISC_EXPORT isc_wait_for_event();
- ISC_LONG ISC_EXPORT isc_ftof();
- ISC_STATUS ISC_EXPORT isc_print_blr();
- void ISC_EXPORT isc_set_debug();
- void ISC_EXPORT isc_qtoq();
- ISC_LONG ISC_EXPORT isc_vax_integer();
- void ISC_EXPORT isc_vtof();
- void ISC_EXPORT isc_vtov();
- int ISC_EXPORT isc_version();
- ISC_LONG ISC_EXPORT isc_reset_fpe ();
-
- #ifndef __STDC__
-
- /******************/
- /* Blob functions */
- /******************/
-
- BSTREAM ISC_FAR * ISC_EXPORT Bopen();
- BSTREAM ISC_FAR * ISC_EXPORT BLOB_open();
- BSTREAM ISC_FAR * ISC_EXPORT Bopen2();
- #endif /* __STDC__ */
-
- #endif /* __cplusplus || __STDC__ */
-
- /***************************************************/
- /* Actions to pass to the blob filter (ctl_source) */
- /***************************************************/
-
- #define isc_blob_filter_open 0
- #define isc_blob_filter_get_segment 1
- #define isc_blob_filter_close 2
- #define isc_blob_filter_create 3
- #define isc_blob_filter_put_segment 4
- #define isc_blob_filter_alloc 5
- #define isc_blob_filter_free 6
- #define isc_blob_filter_seek 7
-
- /*******************/
- /* Blr definitions */
- /*******************/
-
- #ifndef _JRD_BLR_H_
-
- #define blr_word(n) ((n) % 256), ((n) / 256)
-
- #define blr_text 14
- #define blr_text2 15
- #define blr_short 7
- #define blr_long 8
- #define blr_quad 9
- #define blr_float 10
- #define blr_double 27
- #define blr_d_float 11
- #define blr_date 35
- #define blr_varying 37
- #define blr_varying2 38
- #define blr_blob 261
- #define blr_cstring 40
- #define blr_cstring2 41
- #define blr_blob_id 45
-
- #define blr_inner 0
- #define blr_left 1
- #define blr_right 2
- #define blr_full 3
-
- #define blr_gds_code 0
- #define blr_sql_code 1
- #define blr_exception 2
- #define blr_trigger_code 3
- #define blr_default_code 4
-
- #define blr_version4 4
- #define blr_eoc 76
- #define blr_end 255
-
- #define blr_assignment 1
- #define blr_begin 2
- #define blr_dcl_variable 3
- #define blr_message 4
- #define blr_erase 5
- #define blr_fetch 6
- #define blr_for 7
- #define blr_if 8
- #define blr_loop 9
- #define blr_modify 10
- #define blr_handler 11
- #define blr_receive 12
- #define blr_select 13
- #define blr_send 14
- #define blr_store 15
- #define blr_label 17
- #define blr_leave 18
- #define blr_store2 19
- #define blr_post 20
-
- #define blr_literal 21
- #define blr_dbkey 22
- #define blr_field 23
- #define blr_fid 24
- #define blr_parameter 25
- #define blr_variable 26
- #define blr_average 27
- #define blr_count 28
- #define blr_maximum 29
- #define blr_minimum 30
- #define blr_total 31
- #define blr_add 34
- #define blr_subtract 35
- #define blr_multiply 36
- #define blr_divide 37
- #define blr_negate 38
- #define blr_concatenate 39
- #define blr_substring 40
- #define blr_parameter2 41
- #define blr_from 42
- #define blr_via 43
- #define blr_user_name 44
- #define blr_null 45
-
- #define blr_eql 47
- #define blr_neq 48
- #define blr_gtr 49
- #define blr_geq 50
- #define blr_lss 51
- #define blr_leq 52
- #define blr_containing 53
- #define blr_matching 54
- #define blr_starting 55
- #define blr_between 56
- #define blr_or 57
- #define blr_and 58
- #define blr_not 59
- #define blr_any 60
- #define blr_missing 61
- #define blr_unique 62
- #define blr_like 63
-
- #define blr_stream 65
- #define blr_set_index 66
- #define blr_rse 67
- #define blr_first 68
- #define blr_project 69
- #define blr_sort 70
- #define blr_boolean 71
- #define blr_ascending 72
- #define blr_descending 73
- #define blr_relation 74
- #define blr_rid 75
- #define blr_union 76
- #define blr_map 77
- #define blr_group_by 78
- #define blr_aggregate 79
- #define blr_join_type 80
-
- #define blr_agg_count 83
- #define blr_agg_max 84
- #define blr_agg_min 85
- #define blr_agg_total 86
- #define blr_agg_average 87
- #define blr_parameter3 88
- #define blr_run_count 118
- #define blr_run_max 89
- #define blr_run_min 90
- #define blr_run_total 91
- #define blr_run_average 92
- #define blr_agg_count2 93
- #define blr_agg_count_distinct 94
- #define blr_agg_total_distinct 95
- #define blr_agg_average_distinct 96
-
- #define blr_function 100
- #define blr_gen_id 101
- #define blr_prot_mask 102
- #define blr_upcase 103
- #define blr_lock_state 104
- #define blr_value_if 105
- #define blr_matching2 106
- #define blr_index 107
- #define blr_ansi_like 108
- #define blr_bookmark 109
- #define blr_crack 110
- #define blr_force_crack 111
- #define blr_seek 112
- #define blr_find 113
-
- #define blr_continue 0
- #define blr_forward 1
- #define blr_backward 2
- #define blr_bof_forward 3
- #define blr_eof_backward 4
-
- #define blr_lock_relation 114
- #define blr_lock_record 115
- #define blr_set_bookmark 116
- #define blr_get_bookmark 117
- #define blr_rs_stream 119
- #define blr_exec_proc 120
- #define blr_begin_range 121
- #define blr_end_range 122
- #define blr_delete_range 123
- #define blr_procedure 124
- #define blr_pid 125
- #define blr_exec_pid 126
- #define blr_singular 127
- #define blr_abort 128
- #define blr_block 129
- #define blr_error_handler 130
- #define blr_cast 131
- #define blr_release_lock 132
- #define blr_release_locks 133
- #define blr_start_savepoint 134
- #define blr_end_savepoint 135
- #define blr_find_dbkey 136
- #define blr_range_relation 137
- #define blr_delete_ranges 138
-
- #define blr_plan 139
- #define blr_merge 140
- #define blr_join 141
- #define blr_sequential 142
- #define blr_navigational 143
- #define blr_indices 144
- #define blr_retrieve 145
-
- #define blr_relation2 146
- #define blr_rid2 147
- #define blr_reset_stream 148
- #define blr_release_bookmark 149
- #define blr_set_generator 150
- #define blr_ansi_any 151
- #define blr_exists 152
- #define blr_cardinality 153
-
- #define blr_record_version 154 /* get tid of record */
- #define blr_stall 155 /* fake server stall */
- #define blr_seek_no_warn 156
- #define blr_find_dbkey_version 157
- #define blr_ansi_all 158
-
- #endif /* _JRD_BLR_H_ */
-
- /**********************************/
- /* Database parameter block stuff */
- /**********************************/
-
- #define isc_dpb_version1 1
- #define isc_dpb_cdd_pathname 1
- #define isc_dpb_allocation 2
- #define isc_dpb_journal 3
- #define isc_dpb_page_size 4
- #define isc_dpb_num_buffers 5
- #define isc_dpb_buffer_length 6
- #define isc_dpb_debug 7
- #define isc_dpb_garbage_collect 8
- #define isc_dpb_verify 9
- #define isc_dpb_sweep 10
- #define isc_dpb_enable_journal 11
- #define isc_dpb_disable_journal 12
- #define isc_dpb_dbkey_scope 13
- #define isc_dpb_number_of_users 14
- #define isc_dpb_trace 15
- #define isc_dpb_no_garbage_collect 16
- #define isc_dpb_damaged 17
- #define isc_dpb_license 18
- #define isc_dpb_sys_user_name 19
- #define isc_dpb_encrypt_key 20
- #define isc_dpb_activate_shadow 21
- #define isc_dpb_sweep_interval 22
- #define isc_dpb_delete_shadow 23
- #define isc_dpb_force_write 24
- #define isc_dpb_begin_log 25
- #define isc_dpb_quit_log 26
- #define isc_dpb_no_reserve 27
- #define isc_dpb_user_name 28
- #define isc_dpb_password 29
- #define isc_dpb_password_enc 30
- #define isc_dpb_sys_user_name_enc 31
- #define isc_dpb_interp 32
- #define isc_dpb_online_dump 33
- #define isc_dpb_old_file_size 34
- #define isc_dpb_old_num_files 35
- #define isc_dpb_old_file 36
- #define isc_dpb_old_start_page 37
- #define isc_dpb_old_start_seqno 38
- #define isc_dpb_old_start_file 39
- #define isc_dpb_drop_walfile 40
- #define isc_dpb_old_dump_id 41
- #define isc_dpb_wal_backup_dir 42
- #define isc_dpb_wal_chkptlen 43
- #define isc_dpb_wal_numbufs 44
- #define isc_dpb_wal_bufsize 45
- #define isc_dpb_wal_grp_cmt_wait 46
- #define isc_dpb_lc_messages 47
- #define isc_dpb_lc_ctype 48
- #define isc_dpb_cache_manager 49
- #define isc_dpb_shutdown 50
- #define isc_dpb_online 51
- #define isc_dpb_shutdown_delay 52
- #define isc_dpb_reserved 53
- #define isc_dpb_overwrite 54
- #define isc_dpb_sec_attach 55
- #define isc_dpb_disable_wal 56
- #define isc_dpb_connect_timeout 57
- #define isc_dpb_dummy_packet_interval 58
- #define isc_dpb_gbak_attach 59
- #define isc_dpb_sql_role_name 60
- #define isc_dpb_set_page_buffers 61
- #define isc_dpb_working_directory 62
-
- /*********************************/
- /* isc_dpb_verify specific flags */
- /*********************************/
-
- #define isc_dpb_pages 1
- #define isc_dpb_records 2
- #define isc_dpb_indices 4
- #define isc_dpb_transactions 8
- #define isc_dpb_no_update 16
- #define isc_dpb_repair 32
- #define isc_dpb_ignore 64
-
- /***********************************/
- /* isc_dpb_shutdown specific flags */
- /***********************************/
-
- #define isc_dpb_shut_cache 1
- #define isc_dpb_shut_attachment 2
- #define isc_dpb_shut_transaction 4
- #define isc_dpb_shut_force 8
-
- /**************************************/
- /* Bit assignments in RDB$SYSTEM_FLAG */
- /**************************************/
-
- #define RDB_system 1
- #define RDB_id_assigned 2
-
- /*************************************/
- /* Transaction parameter block stuff */
- /*************************************/
-
- #define isc_tpb_version1 1
- #define isc_tpb_version3 3
- #define isc_tpb_consistency 1
- #define isc_tpb_concurrency 2
- #define isc_tpb_shared 3
- #define isc_tpb_protected 4
- #define isc_tpb_exclusive 5
- #define isc_tpb_wait 6
- #define isc_tpb_nowait 7
- #define isc_tpb_read 8
- #define isc_tpb_write 9
- #define isc_tpb_lock_read 10
- #define isc_tpb_lock_write 11
- #define isc_tpb_verb_time 12
- #define isc_tpb_commit_time 13
- #define isc_tpb_ignore_limbo 14
- #define isc_tpb_read_committed 15
- #define isc_tpb_autocommit 16
- #define isc_tpb_rec_version 17
- #define isc_tpb_no_rec_version 18
- #define isc_tpb_restart_requests 19
- #define isc_tpb_no_auto_undo 20
-
- /************************/
- /* Blob Parameter Block */
- /************************/
-
- #define isc_bpb_version1 1
- #define isc_bpb_source_type 1
- #define isc_bpb_target_type 2
- #define isc_bpb_type 3
- #define isc_bpb_source_interp 4
- #define isc_bpb_target_interp 5
- #define isc_bpb_filter_parameter 6
-
- #define isc_bpb_type_segmented 0
- #define isc_bpb_type_stream 1
-
- /*********************************/
- /* Service parameter block stuff */
- /*********************************/
-
- #define isc_spb_version1 1
- #define isc_spb_user_name 2
- #define isc_spb_sys_user_name 3
- #define isc_spb_sys_user_name_enc 4
- #define isc_spb_password 5
- #define isc_spb_password_enc 6
- #define isc_spb_command_line 7
- #define isc_spb_connect_timeout isc_dpb_connect_timeout
- #define isc_spb_dummy_packet_interval isc_dpb_dummy_packet_interval
- #define isc_spb_sql_role_name isc_dpb_sql_role_name
-
-
- /*********************************/
- /* Information call declarations */
- /*********************************/
-
- /****************************/
- /* Common, structural codes */
- /****************************/
-
- #define isc_info_end 1
- #define isc_info_truncated 2
- #define isc_info_error 3
-
- /******************************/
- /* Database information items */
- /******************************/
-
- #define isc_info_db_id 4
- #define isc_info_reads 5
- #define isc_info_writes 6
- #define isc_info_fetches 7
- #define isc_info_marks 8
- #define isc_info_implementation 11
- #define isc_info_version 12
- #define isc_info_base_level 13
- #define isc_info_page_size 14
- #define isc_info_num_buffers 15
- #define isc_info_limbo 16
- #define isc_info_current_memory 17
- #define isc_info_max_memory 18
- #define isc_info_window_turns 19
- #define isc_info_license 20
- #define isc_info_allocation 21
- #define isc_info_attachment_id 22
- #define isc_info_read_seq_count 23
- #define isc_info_read_idx_count 24
- #define isc_info_insert_count 25
- #define isc_info_update_count 26
- #define isc_info_delete_count 27
- #define isc_info_backout_count 28
- #define isc_info_purge_count 29
- #define isc_info_expunge_count 30
- #define isc_info_sweep_interval 31
- #define isc_info_ods_version 32
- #define isc_info_ods_minor_version 33
- #define isc_info_no_reserve 34
- #define isc_info_logfile 35
- #define isc_info_cur_logfile_name 36
- #define isc_info_cur_log_part_offset 37
- #define isc_info_num_wal_buffers 38
- #define isc_info_wal_buffer_size 39
- #define isc_info_wal_ckpt_length 40
- #define isc_info_wal_cur_ckpt_interval 41
- #define isc_info_wal_prv_ckpt_fname 42
- #define isc_info_wal_prv_ckpt_poffset 43
- #define isc_info_wal_recv_ckpt_fname 44
- #define isc_info_wal_recv_ckpt_poffset 45
- #define isc_info_wal_grpc_wait_usecs 47
- #define isc_info_wal_num_io 48
- #define isc_info_wal_avg_io_size 49
- #define isc_info_wal_num_commits 50
- #define isc_info_wal_avg_grpc_size 51
- #define isc_info_forced_writes 52
- #define isc_info_user_names 53
- #define isc_info_page_errors 54
- #define isc_info_record_errors 55
- #define isc_info_bpage_errors 56
- #define isc_info_dpage_errors 57
- #define isc_info_ipage_errors 58
- #define isc_info_ppage_errors 59
- #define isc_info_tpage_errors 60
- #define isc_info_set_page_buffers 61
-
- /**************************************/
- /* Database information return values */
- /**************************************/
-
- #define isc_info_db_impl_rdb_vms 1
- #define isc_info_db_impl_rdb_eln 2
- #define isc_info_db_impl_rdb_eln_dev 3
- #define isc_info_db_impl_rdb_vms_y 4
- #define isc_info_db_impl_rdb_eln_y 5
- #define isc_info_db_impl_jri 6
- #define isc_info_db_impl_jsv 7
- #define isc_info_db_impl_isc_a 25
- #define isc_info_db_impl_isc_u 26
- #define isc_info_db_impl_isc_v 27
- #define isc_info_db_impl_isc_s 28
- #define isc_info_db_impl_isc_apl_68K 25
- #define isc_info_db_impl_isc_vax_ultr 26
- #define isc_info_db_impl_isc_vms 27
- #define isc_info_db_impl_isc_sun_68k 28
- #define isc_info_db_impl_isc_os2 29
- #define isc_info_db_impl_isc_sun4 30
- #define isc_info_db_impl_isc_hp_ux 31
- #define isc_info_db_impl_isc_sun_386i 32
- #define isc_info_db_impl_isc_vms_orcl 33
- #define isc_info_db_impl_isc_mac_aux 34
- #define isc_info_db_impl_isc_rt_aix 35
- #define isc_info_db_impl_isc_mips_ult 36
- #define isc_info_db_impl_isc_xenix 37
- #define isc_info_db_impl_isc_dg 38
- #define isc_info_db_impl_isc_hp_mpexl 39
- #define isc_info_db_impl_isc_hp_ux68K 40
- #define isc_info_db_impl_isc_sgi 41
- #define isc_info_db_impl_isc_sco_unix 42
- #define isc_info_db_impl_isc_cray 43
- #define isc_info_db_impl_isc_imp 44
- #define isc_info_db_impl_isc_delta 45
- #define isc_info_db_impl_isc_next 46
- #define isc_info_db_impl_isc_dos 47
- #define isc_info_db_impl_isc_winnt 48
- #define isc_info_db_impl_isc_epson 49
-
- #define isc_info_db_class_access 1
- #define isc_info_db_class_y_valve 2
- #define isc_info_db_class_rem_int 3
- #define isc_info_db_class_rem_srvr 4
- #define isc_info_db_class_pipe_int 7
- #define isc_info_db_class_pipe_srvr 8
- #define isc_info_db_class_sam_int 9
- #define isc_info_db_class_sam_srvr 10
- #define isc_info_db_class_gateway 11
- #define isc_info_db_class_cache 12
-
- /*****************************/
- /* Request information items */
- /*****************************/
-
- #define isc_info_number_messages 4
- #define isc_info_max_message 5
- #define isc_info_max_send 6
- #define isc_info_max_receive 7
- #define isc_info_state 8
- #define isc_info_message_number 9
- #define isc_info_message_size 10
- #define isc_info_request_cost 11
- #define isc_info_access_path 12
- #define isc_info_req_select_count 13
- #define isc_info_req_insert_count 14
- #define isc_info_req_update_count 15
- #define isc_info_req_delete_count 16
-
- /*********************/
- /* Access path items */
- /*********************/
-
- #define isc_info_rsb_end 0
- #define isc_info_rsb_begin 1
- #define isc_info_rsb_type 2
- #define isc_info_rsb_relation 3
- #define isc_info_rsb_plan 4
-
- /*************/
- /* Rsb types */
- /*************/
-
- #define isc_info_rsb_unknown 1
- #define isc_info_rsb_indexed 2
- #define isc_info_rsb_navigate 3
- #define isc_info_rsb_sequential 4
- #define isc_info_rsb_cross 5
- #define isc_info_rsb_sort 6
- #define isc_info_rsb_first 7
- #define isc_info_rsb_boolean 8
- #define isc_info_rsb_union 9
- #define isc_info_rsb_aggregate 10
- #define isc_info_rsb_merge 11
- #define isc_info_rsb_ext_sequential 12
- #define isc_info_rsb_ext_indexed 13
- #define isc_info_rsb_ext_dbkey 14
- #define isc_info_rsb_left_cross 15
- #define isc_info_rsb_select 16
- #define isc_info_rsb_sql_join 17
- #define isc_info_rsb_simulate 18
- #define isc_info_rsb_sim_cross 19
- #define isc_info_rsb_once 20
- #define isc_info_rsb_procedure 21
-
- /**********************/
- /* Bitmap expressions */
- /**********************/
-
- #define isc_info_rsb_and 1
- #define isc_info_rsb_or 2
- #define isc_info_rsb_dbkey 3
- #define isc_info_rsb_index 4
-
- #define isc_info_req_active 2
- #define isc_info_req_inactive 3
- #define isc_info_req_send 4
- #define isc_info_req_receive 5
- #define isc_info_req_select 6
- #define isc_info_req_sql_stall 7
-
- /**************************/
- /* Blob information items */
- /**************************/
-
- #define isc_info_blob_num_segments 4
- #define isc_info_blob_max_segment 5
- #define isc_info_blob_total_length 6
- #define isc_info_blob_type 7
-
- /*********************************/
- /* Transaction information items */
- /*********************************/
-
- #define isc_info_tra_id 4
-
- /*****************************/
- /* Service information items */
- /*****************************/
-
- #define isc_info_svc_version 4
- #define isc_info_svc_message 5
- #define isc_info_svc_total_length 6
- #define isc_info_svc_response 7
- #define isc_info_svc_response_more 8
- #define isc_info_svc_line 9
- #define isc_info_svc_to_eof 10
- #define isc_info_svc_timeout 11
- #define isc_info_svc_server_version 12
- #define isc_info_svc_implementation 13
- #define isc_info_svc_capabilities 14
- #define isc_info_svc_user_dbpath 15
- #define isc_info_svc_svr_db_info 16
- #define isc_info_svc_svr_online 17
- #define isc_info_svc_svr_offline 18
- #define isc_info_svc_get_config 19
- #define isc_info_svc_set_config 20
- #define isc_info_svc_default_config 21
- #define isc_info_svc_get_env 22
- #define isc_info_svc_get_env_lock 23
- #define isc_info_svc_get_env_msg 24
- #define isc_info_svc_dump_pool_info 25 /* For Internal use only */
-
- /*************************/
- /* SQL information items */
- /*************************/
-
- #define isc_info_sql_select 4
- #define isc_info_sql_bind 5
- #define isc_info_sql_num_variables 6
- #define isc_info_sql_describe_vars 7
- #define isc_info_sql_describe_end 8
- #define isc_info_sql_sqlda_seq 9
- #define isc_info_sql_message_seq 10
- #define isc_info_sql_type 11
- #define isc_info_sql_sub_type 12
- #define isc_info_sql_scale 13
- #define isc_info_sql_length 14
- #define isc_info_sql_null_ind 15
- #define isc_info_sql_field 16
- #define isc_info_sql_relation 17
- #define isc_info_sql_owner 18
- #define isc_info_sql_alias 19
- #define isc_info_sql_sqlda_start 20
- #define isc_info_sql_stmt_type 21
- #define isc_info_sql_get_plan 22
- #define isc_info_sql_records 23
- #define isc_info_sql_batch_fetch 24
-
- /*********************************/
- /* SQL information return values */
- /*********************************/
-
- #define isc_info_sql_stmt_select 1
- #define isc_info_sql_stmt_insert 2
- #define isc_info_sql_stmt_update 3
- #define isc_info_sql_stmt_delete 4
- #define isc_info_sql_stmt_ddl 5
- #define isc_info_sql_stmt_get_segment 6
- #define isc_info_sql_stmt_put_segment 7
- #define isc_info_sql_stmt_exec_procedure 8
- #define isc_info_sql_stmt_start_trans 9
- #define isc_info_sql_stmt_commit 10
- #define isc_info_sql_stmt_rollback 11
- #define isc_info_sql_stmt_select_for_upd 12
- #define isc_info_sql_stmt_set_generator 13
-
- /***********************************/
- /* Server configuration key values */
- /***********************************/
-
- #define ISCCFG_LOCKMEM_KEY 0
- #define ISCCFG_LOCKSEM_KEY 1
- #define ISCCFG_LOCKSIG_KEY 2
- #define ISCCFG_EVNTMEM_KEY 3
- #define ISCCFG_DBCACHE_KEY 4
- #define ISCCFG_PRIORITY_KEY 5
- #define ISCCFG_IPCMAP_KEY 6
- #define ISCCFG_MEMMIN_KEY 7
- #define ISCCFG_MEMMAX_KEY 8
- #define ISCCFG_LOCKORDER_KEY 9
- #define ISCCFG_ANYLOCKMEM_KEY 10
- #define ISCCFG_ANYLOCKSEM_KEY 11
- #define ISCCFG_ANYLOCKSIG_KEY 12
- #define ISCCFG_ANYEVNTMEM_KEY 13
- #define ISCCFG_LOCKHASH_KEY 14
- #define ISCCFG_DEADLOCK_KEY 15
- #define ISCCFG_LOCKSPIN_KEY 16
- #define ISCCFG_CONN_TIMEOUT_KEY 17
- #define ISCCFG_DUMMY_INTRVL_KEY 18
- #define ISCCFG_TRACE_POOLS_KEY 19 /* Internal Use only */
-
- /***************/
- /* Error codes */
- /***************/
-
- #define isc_facility 20
- #define isc_err_base 335544320L
- #define isc_err_factor 1
- #define isc_arg_end 0
- #define isc_arg_gds 1
- #define isc_arg_string 2
- #define isc_arg_cstring 3
- #define isc_arg_number 4
- #define isc_arg_interpreted 5
- #define isc_arg_vms 6
- #define isc_arg_unix 7
- #define isc_arg_domain 8
- #define isc_arg_dos 9
- #define isc_arg_mpexl 10
- #define isc_arg_mpexl_ipc 11
- #define isc_arg_next_mach 15
- #define isc_arg_netware 16
- #define isc_arg_win32 17
-
- #define isc_arith_except 335544321L
- #define isc_bad_dbkey 335544322L
- #define isc_bad_db_format 335544323L
- #define isc_bad_db_handle 335544324L
- #define isc_bad_dpb_content 335544325L
- #define isc_bad_dpb_form 335544326L
- #define isc_bad_req_handle 335544327L
- #define isc_bad_segstr_handle 335544328L
- #define isc_bad_segstr_id 335544329L
- #define isc_bad_tpb_content 335544330L
- #define isc_bad_tpb_form 335544331L
- #define isc_bad_trans_handle 335544332L
- #define isc_bug_check 335544333L
- #define isc_convert_error 335544334L
- #define isc_db_corrupt 335544335L
- #define isc_deadlock 335544336L
- #define isc_excess_trans 335544337L
- #define isc_from_no_match 335544338L
- #define isc_infinap 335544339L
- #define isc_infona 335544340L
- #define isc_infunk 335544341L
- #define isc_integ_fail 335544342L
- #define isc_invalid_blr 335544343L
- #define isc_io_error 335544344L
- #define isc_lock_conflict 335544345L
- #define isc_metadata_corrupt 335544346L
- #define isc_not_valid 335544347L
- #define isc_no_cur_rec 335544348L
- #define isc_no_dup 335544349L
- #define isc_no_finish 335544350L
- #define isc_no_meta_update 335544351L
- #define isc_no_priv 335544352L
- #define isc_no_recon 335544353L
- #define isc_no_record 335544354L
- #define isc_no_segstr_close 335544355L
- #define isc_obsolete_metadata 335544356L
- #define isc_open_trans 335544357L
- #define isc_port_len 335544358L
- #define isc_read_only_field 335544359L
- #define isc_read_only_rel 335544360L
- #define isc_read_only_trans 335544361L
- #define isc_read_only_view 335544362L
- #define isc_req_no_trans 335544363L
- #define isc_req_sync 335544364L
- #define isc_req_wrong_db 335544365L
- #define isc_segment 335544366L
- #define isc_segstr_eof 335544367L
- #define isc_segstr_no_op 335544368L
- #define isc_segstr_no_read 335544369L
- #define isc_segstr_no_trans 335544370L
- #define isc_segstr_no_write 335544371L
- #define isc_segstr_wrong_db 335544372L
- #define isc_sys_request 335544373L
- #define isc_stream_eof 335544374L
- #define isc_unavailable 335544375L
- #define isc_unres_rel 335544376L
- #define isc_uns_ext 335544377L
- #define isc_wish_list 335544378L
- #define isc_wrong_ods 335544379L
- #define isc_wronumarg 335544380L
- #define isc_imp_exc 335544381L
- #define isc_random 335544382L
- #define isc_fatal_conflict 335544383L
- #define isc_badblk 335544384L
- #define isc_invpoolcl 335544385L
- #define isc_nopoolids 335544386L
- #define isc_relbadblk 335544387L
- #define isc_blktoobig 335544388L
- #define isc_bufexh 335544389L
- #define isc_syntaxerr 335544390L
- #define isc_bufinuse 335544391L
- #define isc_bdbincon 335544392L
- #define isc_reqinuse 335544393L
- #define isc_badodsver 335544394L
- #define isc_relnotdef 335544395L
- #define isc_fldnotdef 335544396L
- #define isc_dirtypage 335544397L
- #define isc_waifortra 335544398L
- #define isc_doubleloc 335544399L
- #define isc_nodnotfnd 335544400L
- #define isc_dupnodfnd 335544401L
- #define isc_locnotmar 335544402L
- #define isc_badpagtyp 335544403L
- #define isc_corrupt 335544404L
- #define isc_badpage 335544405L
- #define isc_badindex 335544406L
- #define isc_dbbnotzer 335544407L
- #define isc_tranotzer 335544408L
- #define isc_trareqmis 335544409L
- #define isc_badhndcnt 335544410L
- #define isc_wrotpbver 335544411L
- #define isc_wroblrver 335544412L
- #define isc_wrodpbver 335544413L
- #define isc_blobnotsup 335544414L
- #define isc_badrelation 335544415L
- #define isc_nodetach 335544416L
- #define isc_notremote 335544417L
- #define isc_trainlim 335544418L
- #define isc_notinlim 335544419L
- #define isc_traoutsta 335544420L
- #define isc_connect_reject 335544421L
- #define isc_dbfile 335544422L
- #define isc_orphan 335544423L
- #define isc_no_lock_mgr 335544424L
- #define isc_ctxinuse 335544425L
- #define isc_ctxnotdef 335544426L
- #define isc_datnotsup 335544427L
- #define isc_badmsgnum 335544428L
- #define isc_badparnum 335544429L
- #define isc_virmemexh 335544430L
- #define isc_blocking_signal 335544431L
- #define isc_lockmanerr 335544432L
- #define isc_journerr 335544433L
- #define isc_keytoobig 335544434L
- #define isc_nullsegkey 335544435L
- #define isc_sqlerr 335544436L
- #define isc_wrodynver 335544437L
- #define isc_funnotdef 335544438L
- #define isc_funmismat 335544439L
- #define isc_bad_msg_vec 335544440L
- #define isc_bad_detach 335544441L
- #define isc_noargacc_read 335544442L
- #define isc_noargacc_write 335544443L
- #define isc_read_only 335544444L
- #define isc_ext_err 335544445L
- #define isc_non_updatable 335544446L
- #define isc_no_rollback 335544447L
- #define isc_bad_sec_info 335544448L
- #define isc_invalid_sec_info 335544449L
- #define isc_misc_interpreted 335544450L
- #define isc_update_conflict 335544451L
- #define isc_unlicensed 335544452L
- #define isc_obj_in_use 335544453L
- #define isc_nofilter 335544454L
- #define isc_shadow_accessed 335544455L
- #define isc_invalid_sdl 335544456L
- #define isc_out_of_bounds 335544457L
- #define isc_invalid_dimension 335544458L
- #define isc_rec_in_limbo 335544459L
- #define isc_shadow_missing 335544460L
- #define isc_cant_validate 335544461L
- #define isc_cant_start_journal 335544462L
- #define isc_gennotdef 335544463L
- #define isc_cant_start_logging 335544464L
- #define isc_bad_segstr_type 335544465L
- #define isc_foreign_key 335544466L
- #define isc_high_minor 335544467L
- #define isc_tra_state 335544468L
- #define isc_trans_invalid 335544469L
- #define isc_buf_invalid 335544470L
- #define isc_indexnotdefined 335544471L
- #define isc_login 335544472L
- #define isc_invalid_bookmark 335544473L
- #define isc_bad_lock_level 335544474L
- #define isc_relation_lock 335544475L
- #define isc_record_lock 335544476L
- #define isc_max_idx 335544477L
- #define isc_jrn_enable 335544478L
- #define isc_old_failure 335544479L
- #define isc_old_in_progress 335544480L
- #define isc_old_no_space 335544481L
- #define isc_no_wal_no_jrn 335544482L
- #define isc_num_old_files 335544483L
- #define isc_wal_file_open 335544484L
- #define isc_bad_stmt_handle 335544485L
- #define isc_wal_failure 335544486L
- #define isc_walw_err 335544487L
- #define isc_logh_small 335544488L
- #define isc_logh_inv_version 335544489L
- #define isc_logh_open_flag 335544490L
- #define isc_logh_open_flag2 335544491L
- #define isc_logh_diff_dbname 335544492L
- #define isc_logf_unexpected_eof 335544493L
- #define isc_logr_incomplete 335544494L
- #define isc_logr_header_small 335544495L
- #define isc_logb_small 335544496L
- #define isc_wal_illegal_attach 335544497L
- #define isc_wal_invalid_wpb 335544498L
- #define isc_wal_err_rollover 335544499L
- #define isc_no_wal 335544500L
- #define isc_drop_wal 335544501L
- #define isc_stream_not_defined 335544502L
- #define isc_wal_subsys_error 335544503L
- #define isc_wal_subsys_corrupt 335544504L
- #define isc_no_archive 335544505L
- #define isc_shutinprog 335544506L
- #define isc_range_in_use 335544507L
- #define isc_range_not_found 335544508L
- #define isc_charset_not_found 335544509L
- #define isc_lock_timeout 335544510L
- #define isc_prcnotdef 335544511L
- #define isc_prcmismat 335544512L
- #define isc_wal_bugcheck 335544513L
- #define isc_wal_cant_expand 335544514L
- #define isc_codnotdef 335544515L
- #define isc_xcpnotdef 335544516L
- #define isc_except 335544517L
- #define isc_cache_restart 335544518L
- #define isc_bad_lock_handle 335544519L
- #define isc_jrn_present 335544520L
- #define isc_wal_err_rollover2 335544521L
- #define isc_wal_err_logwrite 335544522L
- #define isc_wal_err_jrn_comm 335544523L
- #define isc_wal_err_expansion 335544524L
- #define isc_wal_err_setup 335544525L
- #define isc_wal_err_ww_sync 335544526L
- #define isc_wal_err_ww_start 335544527L
- #define isc_shutdown 335544528L
- #define isc_existing_priv_mod 335544529L
- #define isc_primary_key_ref 335544530L
- #define isc_primary_key_notnull 335544531L
- #define isc_ref_cnstrnt_notfound 335544532L
- #define isc_foreign_key_notfound 335544533L
- #define isc_ref_cnstrnt_update 335544534L
- #define isc_check_cnstrnt_update 335544535L
- #define isc_check_cnstrnt_del 335544536L
- #define isc_integ_index_seg_del 335544537L
- #define isc_integ_index_seg_mod 335544538L
- #define isc_integ_index_del 335544539L
- #define isc_integ_index_mod 335544540L
- #define isc_check_trig_del 335544541L
- #define isc_check_trig_update 335544542L
- #define isc_cnstrnt_fld_del 335544543L
- #define isc_cnstrnt_fld_rename 335544544L
- #define isc_rel_cnstrnt_update 335544545L
- #define isc_constaint_on_view 335544546L
- #define isc_invld_cnstrnt_type 335544547L
- #define isc_primary_key_exists 335544548L
- #define isc_systrig_update 335544549L
- #define isc_not_rel_owner 335544550L
- #define isc_grant_obj_notfound 335544551L
- #define isc_grant_fld_notfound 335544552L
- #define isc_grant_nopriv 335544553L
- #define isc_nonsql_security_rel 335544554L
- #define isc_nonsql_security_fld 335544555L
- #define isc_wal_cache_err 335544556L
- #define isc_shutfail 335544557L
- #define isc_check_constraint 335544558L
- #define isc_bad_svc_handle 335544559L
- #define isc_shutwarn 335544560L
- #define isc_wrospbver 335544561L
- #define isc_bad_spb_form 335544562L
- #define isc_svcnotdef 335544563L
- #define isc_no_jrn 335544564L
- #define isc_transliteration_failed 335544565L
- #define isc_start_cm_for_wal 335544566L
- #define isc_wal_ovflow_log_required 335544567L
- #define isc_text_subtype 335544568L
- #define isc_dsql_error 335544569L
- #define isc_dsql_command_err 335544570L
- #define isc_dsql_constant_err 335544571L
- #define isc_dsql_cursor_err 335544572L
- #define isc_dsql_datatype_err 335544573L
- #define isc_dsql_decl_err 335544574L
- #define isc_dsql_cursor_update_err 335544575L
- #define isc_dsql_cursor_open_err 335544576L
- #define isc_dsql_cursor_close_err 335544577L
- #define isc_dsql_field_err 335544578L
- #define isc_dsql_internal_err 335544579L
- #define isc_dsql_relation_err 335544580L
- #define isc_dsql_procedure_err 335544581L
- #define isc_dsql_request_err 335544582L
- #define isc_dsql_sqlda_err 335544583L
- #define isc_dsql_var_count_err 335544584L
- #define isc_dsql_stmt_handle 335544585L
- #define isc_dsql_function_err 335544586L
- #define isc_dsql_blob_err 335544587L
- #define isc_collation_not_found 335544588L
- #define isc_collation_not_for_charset 335544589L
- #define isc_dsql_dup_option 335544590L
- #define isc_dsql_tran_err 335544591L
- #define isc_dsql_invalid_array 335544592L
- #define isc_dsql_max_arr_dim_exceeded 335544593L
- #define isc_dsql_arr_range_error 335544594L
- #define isc_dsql_trigger_err 335544595L
- #define isc_dsql_subselect_err 335544596L
- #define isc_dsql_crdb_prepare_err 335544597L
- #define isc_specify_field_err 335544598L
- #define isc_num_field_err 335544599L
- #define isc_col_name_err 335544600L
- #define isc_where_err 335544601L
- #define isc_table_view_err 335544602L
- #define isc_distinct_err 335544603L
- #define isc_key_field_count_err 335544604L
- #define isc_subquery_err 335544605L
- #define isc_expression_eval_err 335544606L
- #define isc_node_err 335544607L
- #define isc_command_end_err 335544608L
- #define isc_index_name 335544609L
- #define isc_exception_name 335544610L
- #define isc_field_name 335544611L
- #define isc_token_err 335544612L
- #define isc_union_err 335544613L
- #define isc_dsql_construct_err 335544614L
- #define isc_field_aggregate_err 335544615L
- #define isc_field_ref_err 335544616L
- #define isc_order_by_err 335544617L
- #define isc_return_mode_err 335544618L
- #define isc_extern_func_err 335544619L
- #define isc_alias_conflict_err 335544620L
- #define isc_procedure_conflict_error 335544621L
- #define isc_relation_conflict_err 335544622L
- #define isc_dsql_domain_err 335544623L
- #define isc_idx_seg_err 335544624L
- #define isc_node_name_err 335544625L
- #define isc_table_name 335544626L
- #define isc_proc_name 335544627L
- #define isc_idx_create_err 335544628L
- #define isc_wal_shadow_err 335544629L
- #define isc_dependency 335544630L
- #define isc_idx_key_err 335544631L
- #define isc_dsql_file_length_err 335544632L
- #define isc_dsql_shadow_number_err 335544633L
- #define isc_dsql_token_unk_err 335544634L
- #define isc_dsql_no_relation_alias 335544635L
- #define isc_indexname 335544636L
- #define isc_no_stream_plan 335544637L
- #define isc_stream_twice 335544638L
- #define isc_stream_not_found 335544639L
- #define isc_collation_requires_text 335544640L
- #define isc_dsql_domain_not_found 335544641L
- #define isc_index_unused 335544642L
- #define isc_dsql_self_join 335544643L
- #define isc_stream_bof 335544644L
- #define isc_stream_crack 335544645L
- #define isc_db_or_file_exists 335544646L
- #define isc_invalid_operator 335544647L
- #define isc_conn_lost 335544648L
- #define isc_bad_checksum 335544649L
- #define isc_page_type_err 335544650L
- #define isc_ext_readonly_err 335544651L
- #define isc_sing_select_err 335544652L
- #define isc_psw_attach 335544653L
- #define isc_psw_start_trans 335544654L
- #define isc_invalid_direction 335544655L
- #define isc_dsql_var_conflict 335544656L
- #define isc_dsql_no_blob_array 335544657L
- #define isc_dsql_base_table 335544658L
- #define isc_duplicate_base_table 335544659L
- #define isc_view_alias 335544660L
- #define isc_index_root_page_full 335544661L
- #define isc_dsql_blob_type_unknown 335544662L
- #define isc_req_max_clones_exceeded 335544663L
- #define isc_dsql_duplicate_spec 335544664L
- #define isc_unique_key_violation 335544665L
- #define isc_srvr_version_too_old 335544666L
- #define isc_drdb_completed_with_errs 335544667L
- #define isc_dsql_procedure_use_err 335544668L
- #define isc_dsql_count_mismatch 335544669L
- #define isc_blob_idx_err 335544670L
- #define isc_array_idx_err 335544671L
- #define isc_key_field_err 335544672L
- #define isc_no_delete 335544673L
- #define isc_del_last_field 335544674L
- #define isc_sort_err 335544675L
- #define isc_sort_mem_err 335544676L
- #define isc_version_err 335544677L
- #define isc_inval_key_posn 335544678L
- #define isc_no_segments_err 335544679L
- #define isc_crrp_data_err 335544680L
- #define isc_rec_size_err 335544681L
- #define isc_dsql_field_ref 335544682L
- #define isc_req_depth_exceeded 335544683L
- #define isc_no_field_access 335544684L
- #define isc_no_dbkey 335544685L
- #define isc_jrn_format_err 335544686L
- #define isc_jrn_file_full 335544687L
- #define isc_dsql_open_cursor_request 335544688L
- #define isc_ib_error 335544689L
- #define isc_cache_redef 335544690L
- #define isc_cache_too_small 335544691L
- #define isc_log_redef 335544692L
- #define isc_log_too_small 335544693L
- #define isc_partition_too_small 335544694L
- #define isc_partition_not_supp 335544695L
- #define isc_log_length_spec 335544696L
- #define isc_precision_err 335544697L
- #define isc_scale_nogt 335544698L
- #define isc_expec_short 335544699L
- #define isc_expec_long 335544700L
- #define isc_expec_ushort 335544701L
- #define isc_like_escape_invalid 335544702L
- #define isc_svcnoexe 335544703L
- #define isc_net_lookup_err 335544704L
- #define isc_service_unknown 335544705L
- #define isc_host_unknown 335544706L
- #define isc_grant_nopriv_on_base 335544707L
- #define isc_dyn_fld_ambiguous 335544708L
- #define isc_dsql_agg_ref_err 335544709L
- #define isc_complex_view 335544710L
- #define isc_unprepared_stmt 335544711L
- #define isc_expec_positive 335544712L
- #define isc_dsql_sqlda_value_err 335544713L
- #define isc_invalid_array_id 335544714L
- #define isc_extfile_uns_op 335544715L
- #define isc_svc_in_use 335544716L
- #define isc_err_stack_limit 335544717L
- #define isc_invalid_key 335544718L
- #define isc_net_init_error 335544719L
- #define isc_loadlib_failure 335544720L
- #define isc_network_error 335544721L
- #define isc_net_connect_err 335544722L
- #define isc_net_connect_listen_err 335544723L
- #define isc_net_event_connect_err 335544724L
- #define isc_net_event_listen_err 335544725L
- #define isc_net_read_err 335544726L
- #define isc_net_write_err 335544727L
- #define isc_integ_index_deactivate 335544728L
- #define isc_integ_deactivate_primary 335544729L
- #define isc_cse_not_supported 335544730L
- #define isc_tra_must_sweep 335544731L
- #define isc_unsupported_network_drive 335544732L
- #define isc_io_create_err 335544733L
- #define isc_io_open_err 335544734L
- #define isc_io_close_err 335544735L
- #define isc_io_read_err 335544736L
- #define isc_io_write_err 335544737L
- #define isc_io_delete_err 335544738L
- #define isc_io_access_err 335544739L
- #define isc_udf_exception 335544740L
- #define isc_lost_db_connection 335544741L
- #define isc_no_write_user_priv 335544742L
- #define isc_token_too_long 335544743L
- #define isc_max_att_exceeded 335544744L
- #define isc_login_same_as_role_name 335544745L
- #define isc_reftable_requires_pk 335544746L
- #define isc_usrname_too_long 335544747L
- #define isc_password_too_long 335544748L
- #define isc_usrname_required 335544749L
- #define isc_password_required 335544750L
- #define isc_bad_protocol 335544751L
- #define isc_dup_usrname_found 335544752L
- #define isc_usrname_not_found 335544753L
- #define isc_error_adding_sec_record 335544754L
- #define isc_error_modifying_sec_record 335544755L
- #define isc_error_deleting_sec_record 335544756L
- #define isc_error_updating_sec_db 335544757L
- #define isc_sort_rec_size_err 335544758L
- #define isc_bad_default_value 335544759L
- #define isc_invalid_clause 335544760L
- #define isc_too_many_handles 335544761L
- #define isc_optimizer_blk_exc 335544762L
- #define isc_err_max 442
-
- /**********************************************/
- /* Dynamic Data Definition Language operators */
- /**********************************************/
-
- /******************/
- /* Version number */
- /******************/
-
- #define isc_dyn_version_1 1
- #define isc_dyn_eoc 255
-
- /******************************/
- /* Operations (may be nested) */
- /******************************/
-
- #define isc_dyn_begin 2
- #define isc_dyn_end 3
- #define isc_dyn_if 4
- #define isc_dyn_def_database 5
- #define isc_dyn_def_global_fld 6
- #define isc_dyn_def_local_fld 7
- #define isc_dyn_def_idx 8
- #define isc_dyn_def_rel 9
- #define isc_dyn_def_sql_fld 10
- #define isc_dyn_def_view 12
- #define isc_dyn_def_trigger 15
- #define isc_dyn_def_security_class 120
- #define isc_dyn_def_dimension 140
- #define isc_dyn_def_generator 24
- #define isc_dyn_def_function 25
- #define isc_dyn_def_filter 26
- #define isc_dyn_def_function_arg 27
- #define isc_dyn_def_shadow 34
- #define isc_dyn_def_trigger_msg 17
- #define isc_dyn_def_file 36
- #define isc_dyn_mod_database 39
- #define isc_dyn_mod_rel 11
- #define isc_dyn_mod_global_fld 13
- #define isc_dyn_mod_idx 102
- #define isc_dyn_mod_local_fld 14
- #define isc_dyn_mod_view 16
- #define isc_dyn_mod_security_class 122
- #define isc_dyn_mod_trigger 113
- #define isc_dyn_mod_trigger_msg 28
- #define isc_dyn_delete_database 18
- #define isc_dyn_delete_rel 19
- #define isc_dyn_delete_global_fld 20
- #define isc_dyn_delete_local_fld 21
- #define isc_dyn_delete_idx 22
- #define isc_dyn_delete_security_class 123
- #define isc_dyn_delete_dimensions 143
- #define isc_dyn_delete_trigger 23
- #define isc_dyn_delete_trigger_msg 29
- #define isc_dyn_delete_filter 32
- #define isc_dyn_delete_function 33
- #define isc_dyn_delete_shadow 35
- #define isc_dyn_grant 30
- #define isc_dyn_revoke 31
- #define isc_dyn_def_primary_key 37
- #define isc_dyn_def_foreign_key 38
- #define isc_dyn_def_unique 40
- #define isc_dyn_def_procedure 164
- #define isc_dyn_delete_procedure 165
- #define isc_dyn_def_parameter 135
- #define isc_dyn_delete_parameter 136
- #define isc_dyn_mod_procedure 175
- #define isc_dyn_def_log_file 176
- #define isc_dyn_def_cache_file 180
- #define isc_dyn_def_exception 181
- #define isc_dyn_mod_exception 182
- #define isc_dyn_del_exception 183
- #define isc_dyn_drop_log 194
- #define isc_dyn_drop_cache 195
- #define isc_dyn_def_default_log 202
-
- /***********************/
- /* View specific stuff */
- /***********************/
-
- #define isc_dyn_view_blr 43
- #define isc_dyn_view_source 44
- #define isc_dyn_view_relation 45
- #define isc_dyn_view_context 46
- #define isc_dyn_view_context_name 47
-
- /**********************/
- /* Generic attributes */
- /**********************/
-
- #define isc_dyn_rel_name 50
- #define isc_dyn_fld_name 51
- #define isc_dyn_idx_name 52
- #define isc_dyn_description 53
- #define isc_dyn_security_class 54
- #define isc_dyn_system_flag 55
- #define isc_dyn_update_flag 56
- #define isc_dyn_prc_name 166
- #define isc_dyn_prm_name 137
- #define isc_dyn_sql_object 196
- #define isc_dyn_fld_character_set_name 174
-
- /********************************/
- /* Relation specific attributes */
- /********************************/
-
- #define isc_dyn_rel_dbkey_length 61
- #define isc_dyn_rel_store_trig 62
- #define isc_dyn_rel_modify_trig 63
- #define isc_dyn_rel_erase_trig 64
- #define isc_dyn_rel_store_trig_source 65
- #define isc_dyn_rel_modify_trig_source 66
- #define isc_dyn_rel_erase_trig_source 67
- #define isc_dyn_rel_ext_file 68
- #define isc_dyn_rel_sql_protection 69
- #define isc_dyn_rel_constraint 162
- #define isc_dyn_delete_rel_constraint 163
-
- /************************************/
- /* Global field specific attributes */
- /************************************/
-
- #define isc_dyn_fld_type 70
- #define isc_dyn_fld_length 71
- #define isc_dyn_fld_scale 72
- #define isc_dyn_fld_sub_type 73
- #define isc_dyn_fld_segment_length 74
- #define isc_dyn_fld_query_header 75
- #define isc_dyn_fld_edit_string 76
- #define isc_dyn_fld_validation_blr 77
- #define isc_dyn_fld_validation_source 78
- #define isc_dyn_fld_computed_blr 79
- #define isc_dyn_fld_computed_source 80
- #define isc_dyn_fld_missing_value 81
- #define isc_dyn_fld_default_value 82
- #define isc_dyn_fld_query_name 83
- #define isc_dyn_fld_dimensions 84
- #define isc_dyn_fld_not_null 85
- #define isc_dyn_fld_char_length 172
- #define isc_dyn_fld_collation 173
- #define isc_dyn_fld_default_source 193
- #define isc_dyn_del_default 197
- #define isc_dyn_del_validation 198
- #define isc_dyn_single_validation 199
- #define isc_dyn_fld_character_set 203
-
- /***********************************/
- /* Local field specific attributes */
- /***********************************/
-
- #define isc_dyn_fld_source 90
- #define isc_dyn_fld_base_fld 91
- #define isc_dyn_fld_position 92
- #define isc_dyn_fld_update_flag 93
-
- /*****************************/
- /* Index specific attributes */
- /*****************************/
-
- #define isc_dyn_idx_unique 100
- #define isc_dyn_idx_inactive 101
- #define isc_dyn_idx_type 103
- #define isc_dyn_idx_foreign_key 104
- #define isc_dyn_idx_ref_column 105
- #define isc_dyn_idx_statistic 204
-
- /*******************************/
- /* Trigger specific attributes */
- /*******************************/
-
- #define isc_dyn_trg_type 110
- #define isc_dyn_trg_blr 111
- #define isc_dyn_trg_source 112
- #define isc_dyn_trg_name 114
- #define isc_dyn_trg_sequence 115
- #define isc_dyn_trg_inactive 116
- #define isc_dyn_trg_msg_number 117
- #define isc_dyn_trg_msg 118
-
- /**************************************/
- /* Security Class specific attributes */
- /**************************************/
-
- #define isc_dyn_scl_acl 121
- #define isc_dyn_grant_user 130
- #define isc_dyn_grant_proc 186
- #define isc_dyn_grant_trig 187
- #define isc_dyn_grant_view 188
- #define isc_dyn_grant_options 132
- #define isc_dyn_grant_user_group 205
-
-
- /**********************************/
- /* Dimension specific information */
- /**********************************/
-
- #define isc_dyn_dim_lower 141
- #define isc_dyn_dim_upper 142
-
- /****************************/
- /* File specific attributes */
- /****************************/
-
- #define isc_dyn_file_name 125
- #define isc_dyn_file_start 126
- #define isc_dyn_file_length 127
- #define isc_dyn_shadow_number 128
- #define isc_dyn_shadow_man_auto 129
- #define isc_dyn_shadow_conditional 130
-
- /********************************/
- /* Log file specific attributes */
- /********************************/
-
- #define isc_dyn_log_file_sequence 177
- #define isc_dyn_log_file_partitions 178
- #define isc_dyn_log_file_serial 179
- #define isc_dyn_log_file_overflow 200
- #define isc_dyn_log_file_raw 201
-
- /***************************/
- /* Log specific attributes */
- /***************************/
-
- #define isc_dyn_log_group_commit_wait 189
- #define isc_dyn_log_buffer_size 190
- #define isc_dyn_log_check_point_length 191
- #define isc_dyn_log_num_of_buffers 192
-
- /********************************/
- /* Function specific attributes */
- /********************************/
-
- #define isc_dyn_function_name 145
- #define isc_dyn_function_type 146
- #define isc_dyn_func_module_name 147
- #define isc_dyn_func_entry_point 148
- #define isc_dyn_func_return_argument 149
- #define isc_dyn_func_arg_position 150
- #define isc_dyn_func_mechanism 151
- #define isc_dyn_filter_in_subtype 152
- #define isc_dyn_filter_out_subtype 153
-
-
- #define isc_dyn_description2 154
- #define isc_dyn_fld_computed_source2 155
- #define isc_dyn_fld_edit_string2 156
- #define isc_dyn_fld_query_header2 157
- #define isc_dyn_fld_validation_source2 158
- #define isc_dyn_trg_msg2 159
- #define isc_dyn_trg_source2 160
- #define isc_dyn_view_source2 161
- #define isc_dyn_xcp_msg2 184
-
- /*********************************/
- /* Generator specific attributes */
- /*********************************/
-
- #define isc_dyn_generator_name 95
- #define isc_dyn_generator_id 96
-
- /*********************************/
- /* Procedure specific attributes */
- /*********************************/
-
- #define isc_dyn_prc_inputs 167
- #define isc_dyn_prc_outputs 168
- #define isc_dyn_prc_source 169
- #define isc_dyn_prc_blr 170
- #define isc_dyn_prc_source2 171
-
- /*********************************/
- /* Parameter specific attributes */
- /*********************************/
-
- #define isc_dyn_prm_number 138
- #define isc_dyn_prm_type 139
-
- /********************************/
- /* Relation specific attributes */
- /********************************/
-
- #define isc_dyn_xcp_msg 185
-
- /**********************************************/
- /* Cascading referential integrity values */
- /**********************************************/
- #define isc_dyn_foreign_key_update 205
- #define isc_dyn_foreign_key_delete 206
- #define isc_dyn_foreign_key_cascade 207
- #define isc_dyn_foreign_key_default 208
- #define isc_dyn_foreign_key_null 209
- #define isc_dyn_foreign_key_none 210
-
- /***********************/
- /* SQL role values */
- /***********************/
- #define isc_dyn_def_sql_role 211
- #define isc_dyn_sql_role_name 212
- #define isc_dyn_grant_admin_options 213
- #define isc_dyn_del_sql_role 214
-
- /****************************/
- /* Last $dyn value assigned */
- /****************************/
-
- #define isc_dyn_last_dyn_value 214
-
- /******************************************/
- /* Array slice description language (SDL) */
- /******************************************/
-
- #define isc_sdl_version1 1
- #define isc_sdl_eoc 255
- #define isc_sdl_relation 2
- #define isc_sdl_rid 3
- #define isc_sdl_field 4
- #define isc_sdl_fid 5
- #define isc_sdl_struct 6
- #define isc_sdl_variable 7
- #define isc_sdl_scalar 8
- #define isc_sdl_tiny_integer 9
- #define isc_sdl_short_integer 10
- #define isc_sdl_long_integer 11
- #define isc_sdl_literal 12
- #define isc_sdl_add 13
- #define isc_sdl_subtract 14
- #define isc_sdl_multiply 15
- #define isc_sdl_divide 16
- #define isc_sdl_negate 17
- #define isc_sdl_eql 18
- #define isc_sdl_neq 19
- #define isc_sdl_gtr 20
- #define isc_sdl_geq 21
- #define isc_sdl_lss 22
- #define isc_sdl_leq 23
- #define isc_sdl_and 24
- #define isc_sdl_or 25
- #define isc_sdl_not 26
- #define isc_sdl_while 27
- #define isc_sdl_assignment 28
- #define isc_sdl_label 29
- #define isc_sdl_leave 30
- #define isc_sdl_begin 31
- #define isc_sdl_end 32
- #define isc_sdl_do3 33
- #define isc_sdl_do2 34
- #define isc_sdl_do1 35
- #define isc_sdl_element 36
-
- /********************************************/
- /* International text interpretation values */
- /********************************************/
-
- #define isc_interp_eng_ascii 0
- #define isc_interp_jpn_sjis 5
- #define isc_interp_jpn_euc 6
-
- /*******************/
- /* SQL definitions */
- /*******************/
-
- #define SQLDA_VERSION1 1
-
- #define SQL_TEXT 452
- #define SQL_VARYING 448
- #define SQL_SHORT 500
- #define SQL_LONG 496
- #define SQL_FLOAT 482
- #define SQL_DOUBLE 480
- #define SQL_D_FLOAT 530
- #define SQL_DATE 510
- #define SQL_BLOB 520
- #define SQL_ARRAY 540
- #define SQL_QUAD 550
-
- /*****************/
- /* Blob Subtypes */
- /*****************/
-
- /* types less than zero are reserved for customer use */
-
- #define isc_blob_untyped 0
-
- /* internal subtypes */
-
- #define isc_blob_text 1
- #define isc_blob_blr 2
- #define isc_blob_acl 3
- #define isc_blob_ranges 4
- #define isc_blob_summary 5
- #define isc_blob_format 6
- #define isc_blob_tra 7
- #define isc_blob_extfile 8
-
- /* the range 20-30 is reserved for dBASE and Paradox types */
-
- #define isc_blob_formatted_memo 20
- #define isc_blob_paradox_ole 21
- #define isc_blob_graphic 22
- #define isc_blob_dbase_ole 23
- #define isc_blob_typed_binary 24
-
- #endif /* _JRD_IBASE_H_ */
-