/tags/build46/harbour/contrib/rdd_ads/ace.h
C++ Header | 1477 lines | 1076 code | 217 blank | 184 comment | 13 complexity | 77f4484a94e12a2028617e55076dec27 MD5 | raw file
Possible License(s): AGPL-1.0, BSD-3-Clause, CC-BY-SA-3.0, LGPL-3.0, GPL-2.0, LGPL-2.0, LGPL-2.1
Large files files are truncated, but you can click here to view the full file
- // Copyright (c) 2002-2003 Extended Systems, Inc. ALL RIGHTS RESERVED.
- //
- // This source code can be used, modified, or copied by the licensee as long as
- // the modifications (or the new binary resulting from a copy or modification of
- // this source code) are used with Extended Systems' products. The source code
- // is not redistributable as source code, but is redistributable as compiled
- // and linked binary code. If the source code is used, modified, or copied by
- // the licensee, Extended Systems Inc. reserves the right to receive from the
- // licensee, upon request, at no cost to Extended Systems Inc., the modifications.
- //
- // Extended Systems Inc. does not warrant that the operation of this software
- // will meet your requirements or that the operation of the software will be
- // uninterrupted, be error free, or that defects in software will be corrected.
- // This software is provided "AS IS" without warranty of any kind. The entire
- // risk as to the quality and performance of this software is with the purchaser.
- // If this software proves defective or inadequate, purchaser assumes the entire
- // cost of servicing or repair. No oral or written information or advice given
- // by an Extended Systems Inc. representative shall create a warranty or in any
- // way increase the scope of this warranty.
- /*******************************************************************************
- * Source File : ace.h
- * Description : This is the main header file for the Advantage Client
- * Engine. It contains the type definitions, constants,
- * and prototypes for the APIs
- *******************************************************************************/
- #ifndef __ACE_INCLUDED__
- #define __ACE_INCLUDED__
- #if defined( unix ) || defined(__LINUX__)
- #ifndef ADS_LINUX
- #define ADS_LINUX
- #endif
- #endif
- #if defined( ADS_LINUX )
- /* #include "unixutils.h" */
- #define ADS_PATH_DELIMITER '/'
- #ifdef ASANLM
- #define delay(x) AdsSleep(x)
- #endif
- #endif
- #if defined( ADS_LINUX ) && defined( ACE )
- /* This makes the callback functions compile in linux */
- #define WINAPI /* nothing */
- #define FARPROC void*
- #define HWND void*
- #endif // ADS_LINUX && ACE
- #ifdef ADS_LINUX
- #pragma pack( 1 )
- #else
- #pragma pack( push, 1 )
- #endif
- #if defined( WIN32 ) && !defined( SNAPDUMP )
- #define ADS_WIN32
- #endif
- /* This forces a warning for single equals in if statements */
- #ifdef WIN32
- /* 16-bit compiler doesn't seem to like this */
- #ifndef __GNUC__
- #pragma warning( error : 4706 )
- #endif
- #define ADS_PATH_DELIMITER '\\'
- #endif
- /* added to get access() prototype */
- #if defined( ADS_LINUX ) && !defined( NATIVE_SQL )
- #include <unistd.h>
- #endif
- /* data type definitions */
- #ifndef RDDUNVRS_H
- typedef unsigned long UNSIGNED32;
- typedef long SIGNED32;
- typedef unsigned short UNSIGNED16;
- typedef short SIGNED16;
- typedef unsigned char UNSIGNED8;
- typedef char SIGNED8;
- #endif
- typedef unsigned long ADSHANDLE;
- typedef double DOUBLE;
- #ifdef WIN32
- typedef ULONGLONG UNSIGNED64;
- typedef LONGLONG SIGNED64;
- #elif defined( NLM ) && !defined( ADS_LINUX )
- #ifndef ADS_64INTS
- #define ADS_64INTS
- typedef __int64 SIGNED64;
- typedef unsigned __int64 UNSIGNED64;
- #endif
- #elif defined( ADS_LINUX ) || defined( __linux__ )
- /* <sys/types.h> is required for loff_t (64bit ints) */
- #include <sys/types.h>
- /* use a define here to solve 64bit int typedef problems, see wincompat.h & rddunvrs.h */
- #ifndef ADS_64INTS
- #define ADS_64INTS
- typedef loff_t UNSIGNED64;
- typedef loff_t SIGNED64;
- #endif
- #endif
- #define VOID void
- #define EXTERN extern
- #define STATIC static
- #if defined( ASANT ) || defined( ADS_NT ) || defined( ADS_WIN9X )
- #define ENTRYPOINT WINAPI
- #elif defined( ASANLM ) || defined( ADS_LINUX ) || defined( NLM )
- #define ENTRYPOINT
- #elif defined( WIN32 ) && !defined( __BORLANDC__ )
- #if defined( __WATCOMC__ ) || defined( __LCC__ )
- #define ENTRYPOINT __declspec( dllexport ) WINAPI
- #else
- #define ENTRYPOINT _declspec( dllexport ) WINAPI
- #endif
- #else
- #if defined( __BORLANDC__ )
- #define ENTRYPOINT _declspec( dllexport ) WINAPI
- #else
- #define ENTRYPOINT _export WINAPI
- #endif
- #endif
- /* Logical constants */
- #define ADS_FALSE 0
- #define ADS_TRUE 1
- /* This is for parameters to routines that accept a default setting */
- #define ADS_DEFAULT 0
- /* character set types */
- #define ADS_ANSI 1
- #define ADS_OEM 2
- /* rights checking options */
- #define ADS_CHECKRIGHTS 1
- #define ADS_IGNORERIGHTS 2
- /* options for connecting to Advantage servers - can be ORed together */
- #define ADS_INC_USERCOUNT 0x00000001
- #define ADS_STORED_PROC_CONN 0x00000002
- #define ADS_COMPRESS_ALWAYS 0x00000004
- #define ADS_COMPRESS_NEVER 0x00000008
- #define ADS_COMPRESS_INTERNET 0x0000000C
- /* options for opening tables - can be ORed together */
- #define ADS_EXCLUSIVE 0x00000001
- #define ADS_READONLY 0x00000002
- #define ADS_SHARED 0x00000004
- #define ADS_CLIPPER_MEMOS 0x00000008
- #define ADS_TABLE_PERM_READ 0x00000010
- #define ADS_TABLE_PERM_UPDATE 0x00000020
- #define ADS_TABLE_PERM_INSERT 0x00000040
- #define ADS_TABLE_PERM_DELETE 0x00000080
- #define ADS_REINDEX_ON_COLLATION_MISMATCH 0x00000100
- #define ADS_IGNORE_COLLATION_MISMATCH 0x00000200
- //#define unpublished 0x00000400
- //#define unpublished 0x00000800
- #define ADS_DICTIONARY_BOUND_TABLE 0x00001000
- /* Options for creating indexes - can be ORed together */
- #define ADS_ASCENDING 0x00000000
- #define ADS_UNIQUE 0x00000001
- #define ADS_COMPOUND 0x00000002
- #define ADS_CUSTOM 0x00000004
- #define ADS_DESCENDING 0x00000008
- #define ADS_USER_DEFINED 0x00000010
- /* Options specifically for FTS indexes */
- #define ADS_FTS_INDEX 0x00000020 // This is implied for AdsCreateFTSIndex
- #define ADS_FTS_FIXED 0x00000040 // Do not maintain the index with record updates
- #define ADS_FTS_CASE_SENSITIVE 0x00000080 // Make the index case sensitive
- #define ADS_FTS_KEEP_SCORE 0x00000100 // Track word counts in the index for faster SCORE()
- #define ADS_FTS_PROTECT_NUMBERS 0x00000200 // Don't break numbers on commas and periods
- /* Options for returning string values */
- #define ADS_NONE 0x0000
- #define ADS_LTRIM 0x0001
- #define ADS_RTRIM 0x0002
- #define ADS_TRIM 0x0003
- /* this is for passing null terminated strings */
- #define ADS_NTS ( ( UNSIGNED16 ) -1 )
- /* locking compatibility */
- #define ADS_COMPATIBLE_LOCKING 0
- #define ADS_PROPRIETARY_LOCKING 1
- /* settings for seeks */
- #define ADS_SOFTSEEK 0x0001
- #define ADS_HARDSEEK 0x0002
- #define ADS_SEEKGT 0x0004
- /* data types for seeks (and scopes) */
- #define ADS_RAWKEY 1 /* no conversion performed on given data */
- #define ADS_STRINGKEY 2 /* data given as a string */
- #define ADS_DOUBLEKEY 4 /* data is a pointer to 8 byte double */
- /* For retrieving scope settings */
- #define ADS_TOP 1
- #define ADS_BOTTOM 2
- /* for calls that can optionally use filters */
- #define ADS_RESPECTFILTERS 0x0001
- #define ADS_IGNOREFILTERS 0x0002
- #define ADS_RESPECTSCOPES 0x0003
- /*
- * This value is only used with GetRecordCount: It can be ORed in with the
- * ignore filter value to force a read from the table header to get the most
- * current record count.
- */
- #define ADS_REFRESHCOUNT 0x0004
- /* Server type constants */
- #define ADS_LOCAL_SERVER 0x0001
- #define ADS_REMOTE_SERVER 0x0002
- #define ADS_AIS_SERVER 0x0004
- /* ACE Handle types */
- #define ADS_CONNECTION 1
- #define ADS_TABLE 2
- #define ADS_INDEX_ORDER 3
- #define ADS_STATEMENT 4
- #define ADS_CURSOR 5
- #define ADS_DATABASE_CONNECTION 6
- #define ADS_SYS_ADMIN_CONNECTION 7
- #define ADS_FTS_INDEX_ORDER 8
- /* ACE Cursor ReadOnly settings */
- #define ADS_CURSOR_READONLY 1
- #define ADS_CURSOR_READWRITE 2
- /* ACE Cursor Constrain settings */
- #define ADS_CONSTRAIN 1
- #define ADS_NO_CONSTRAIN 2
- /* Select Field Read settings */
- #define ADS_READ_ALL_COLUMNS 1
- #define ADS_READ_SELECT_COLUMNS 2
- /* Disable server query optimization */
- #define ADS_NO_OPTIMIZATION 1
- /* Data dictionary new contraint property validation options */
- #define ADS_NO_VALIDATE 0 /* Do not validate records against the new constraint */
- #define ADS_VALIDATE_NO_SAVE 1 /* Delete record not meeting the constraint from the table, no save */
- #define ADS_VALIDATE_WRITE_FAIL 2 /* Validate the records against the new constraint and overwrite
- * the fail table with records not meeting the constraint. */
- #define ADS_VALIDATE_APPEND_FAIL 3 /* Validate the records against the new constraint and append
- * the failed records into the fail table */
- #define ADS_VALIDATE_RETURN_ERROR 4 /* Validate the records against the new constraint and return
- * error if there is any record not meeting the constraint */
- /* Possible result values from AdsCompareBookmarks. */
- #define ADS_CMP_LESS -1
- #define ADS_CMP_EQUAL 0
- #define ADS_CMP_GREATER 1
- /* Property values for the AdsGetConnectionProperty API */
- #define ADS_CONNECTIONPROP_USERNAME 0
- #define ADS_CONNECTIONPROP_PASSWORD 1
- /* Success return code */
- #define AE_SUCCESS 0
- /* Error codes */
- #define AE_ALLOCATION_FAILED 5001
- #define AE_COMM_MISMATCH 5002
- #define AE_DATA_TOO_LONG 5003
- #define AE_FILE_NOT_FOUND 5004
- #define AE_INSUFFICIENT_BUFFER 5005
- #define AE_INVALID_BOOKMARK 5006
- #define AE_INVALID_CALLBACK 5007
- #define AE_INVALID_CENTURY 5008
- #define AE_INVALID_DATEFORMAT 5009
- #define AE_INVALID_DECIMALS 5010
- #define AE_INVALID_EXPRESSION 5011
- #define AE_INVALID_FIELDDEF 5012
- #define AE_INVALID_FILTER_OPTION 5013
- #define AE_INVALID_INDEX_HANDLE 5014
- #define AE_INVALID_INDEX_NAME 5015
- #define AE_INVALID_INDEX_ORDER_NAME 5016
- #define AE_INVALID_INDEX_TYPE 5017
- #define AE_INVALID_HANDLE 5018
- #define AE_INVALID_OPTION 5019
- #define AE_INVALID_PATH 5020
- #define AE_INVALID_POINTER 5021
- #define AE_INVALID_RECORD_NUMBER 5022
- #define AE_INVALID_TABLE_HANDLE 5023
- #define AE_INVALID_CONNECTION_HANDLE 5024
- #define AE_INVALID_TABLETYPE 5025
- #define AE_INVALID_WORKAREA 5026
- #define AE_INVALID_CHARSETTYPE 5027
- #define AE_INVALID_LOCKTYPE 5028
- #define AE_INVALID_RIGHTSOPTION 5029
- #define AE_INVALID_FIELDNUMBER 5030
- #define AE_INVALID_KEY_LENGTH 5031
- #define AE_INVALID_FIELDNAME 5032
- #define AE_NO_DRIVE_CONNECTION 5033
- #define AE_FILE_NOT_ON_SERVER 5034
- #define AE_LOCK_FAILED 5035
- #define AE_NO_CONNECTION 5036
- #define AE_NO_FILTER 5037
- #define AE_NO_SCOPE 5038
- #define AE_NO_TABLE 5039
- #define AE_NO_WORKAREA 5040
- #define AE_NOT_FOUND 5041
- #define AE_NOT_IMPLEMENTED 5042
- #define AE_MAX_THREADS_EXCEEDED 5043
- #define AE_START_THREAD_FAIL 5044
- #define AE_TOO_MANY_INDEXES 5045
- #define AE_TOO_MANY_TAGS 5046
- #define AE_TRANS_OUT_OF_SEQUENCE 5047
- #define AE_UNKNOWN_ERRCODE 5048
- #define AE_UNSUPPORTED_LANGUAGE 5049
- #define AE_NAME_TOO_LONG 5050
- #define AE_DUPLICATE_ALIAS 5051
- #define AE_TABLE_CLOSED_IN_TRANSACTION 5053
- #define AE_PERMISSION_DENIED 5054
- #define AE_STRING_NOT_FOUND 5055
- #define AE_UNKNOWN_CHAR_SET 5056
- #define AE_INVALID_OEM_CHAR_FILE 5057
- #define AE_INVALID_MEMO_BLOCK_SIZE 5058
- #define AE_NO_FILE_FOUND 5059
- #define AE_NO_INF_LOCK 5060
- #define AE_INF_FILE_ERROR 5061
- #define AE_RECORD_NOT_LOCKED 5062
- #define AE_ILLEGAL_COMMAND_DURING_TRANS 5063
- #define AE_TABLE_NOT_SHARED 5064
- #define AE_INDEX_ALREADY_OPEN 5065
- #define AE_INVALID_FIELD_TYPE 5066
- #define AE_TABLE_NOT_EXCLUSIVE 5067
- #define AE_NO_CURRENT_RECORD 5068
- #define AE_PRECISION_LOST 5069
- #define AE_INVALID_DATA_TYPE 5070
- #define AE_DATA_TRUNCATED 5071
- #define AE_TABLE_READONLY 5072
- #define AE_INVALID_RECORD_LENGTH 5073
- #define AE_NO_ERROR_MESSAGE 5074
- #define AE_INDEX_SHARED 5075
- #define AE_INDEX_EXISTS 5076
- #define AE_CYCLIC_RELATION 5077
- #define AE_INVALID_RELATION 5078
- #define AE_INVALID_DAY 5079
- #define AE_INVALID_MONTH 5080
- #define AE_CORRUPT_TABLE 5081
- #define AE_INVALID_BINARY_OFFSET 5082
- #define AE_BINARY_FILE_ERROR 5083
- #define AE_INVALID_DELETED_BYTE_VALUE 5084
- #define AE_NO_PENDING_UPDATE 5085
- #define AE_PENDING_UPDATE 5086
- #define AE_TABLE_NOT_LOCKED 5087
- #define AE_CORRUPT_INDEX 5088
- #define AE_AUTOOPEN_INDEX 5089
- #define AE_SAME_TABLE 5090
- #define AE_INVALID_IMAGE 5091
- #define AE_COLLATION_SEQUENCE_MISMATCH 5092
- #define AE_INVALID_INDEX_ORDER 5093
- #define AE_TABLE_CACHED 5094
- #define AE_INVALID_DATE 5095
- #define AE_ENCRYPTION_NOT_ENABLED 5096
- #define AE_INVALID_PASSWORD 5097
- #define AE_TABLE_ENCRYPTED 5098
- #define AE_SERVER_MISMATCH 5099
- #define AE_INVALID_USERNAME 5100
- #define AE_INVALID_VALUE 5101
- #define AE_INVALID_CONTINUE 5102
- #define AE_UNRECOGNIZED_VERSION 5103
- #define AE_RECORD_ENCRYPTED 5104
- #define AE_UNRECOGNIZED_ENCRYPTION 5105
- #define AE_INVALID_SQLSTATEMENT_HANDLE 5106
- #define AE_INVALID_SQLCURSOR_HANDLE 5107
- #define AE_NOT_PREPARED 5108
- #define AE_CURSOR_NOT_CLOSED 5109
- #define AE_INVALID_SQL_PARAM_NUMBER 5110
- #define AE_INVALID_SQL_PARAM_NAME 5111
- #define AE_INVALID_COLUMN_NUMBER 5112
- #define AE_INVALID_COLUMN_NAME 5113
- #define AE_INVALID_READONLY_OPTION 5114
- #define AE_IS_CURSOR_HANDLE 5115
- #define AE_INDEX_EXPR_NOT_FOUND 5116
- #define AE_NOT_DML 5117
- #define AE_INVALID_CONSTRAIN_TYPE 5118
- #define AE_INVALID_CURSORHANDLE 5119
- #define AE_OBSOLETE_FUNCTION 5120
- #define AE_TADSDATASET_GENERAL 5121
- #define AE_UDF_OVERWROTE_BUFFER 5122
- #define AE_INDEX_UDF_NOT_SET 5123
- #define AE_CONCURRENT_PROBLEM 5124
- #define AE_INVALID_DICTIONARY_HANDLE 5125
- #define AE_INVALID_PROPERTY_ID 5126
- #define AE_INVALID_PROPERTY 5127
- #define AE_DICTIONARY_ALREADY_EXISTS 5128
- #define AE_INVALID_FIND_HANDLE 5129
- #define AE_DD_REQUEST_NOT_COMPLETED 5130
- #define AE_INVALID_OBJECT_ID 5131
- #define AE_INVALID_OBJECT_NAME 5132
- #define AE_INVALID_PROPERTY_LENGTH 5133
- #define AE_INVALID_KEY_OPTIONS 5134
- #define AE_CONSTRAINT_VALIDATION_ERROR 5135
- #define AE_INVALID_OBJECT_TYPE 5136
- #define AE_NO_OBJECT_FOUND 5137
- #define AE_PROPERTY_NOT_SET 5138
- #define AE_NO_PRIMARY_KEY_EXISTS 5139
- #define AE_LOCAL_CONN_DISABLED 5140
- #define AE_RI_RESTRICT 5141
- #define AE_RI_CASCADE 5142
- #define AE_RI_FAILED 5143
- #define AE_RI_CORRUPTED 5144
- #define AE_RI_UNDO_FAILED 5145
- #define AE_RI_RULE_EXISTS 5146
- #define AE_COLUMN_CANNOT_BE_NULL 5147
- #define AE_MIN_CONSTRAINT_VIOLATION 5148
- #define AE_MAX_CONSTRAINT_VIOLATION 5149
- #define AE_RECORD_CONSTRAINT_VIOLATION 5150
- #define AE_CANNOT_DELETE_TEMP_INDEX 5151
- #define AE_RESTRUCTURE_FAILED 5152
- #define AE_INVALID_STATEMENT 5153
- #define AE_STORED_PROCEDURE_FAILED 5154
- #define AE_INVALID_DICTIONARY_FILE 5155
- #define AE_NOT_MEMBER_OF_GROUP 5156
- #define AE_ALREADY_MEMBER_OF_GROUP 5157
- #define AE_INVALID_OBJECT_RIGHT 5158
- #define AE_INVALID_OBJECT_PERMISSION 5158 /* Note that this is same as above. The word
- * permission is more commonly used.
- */
- #define AE_CANNOT_OPEN_DATABASE_TABLE 5159
- #define AE_INVALID_CONSTRAINT 5160
- #define AE_NOT_ADMINISTRATOR 5161
- #define AE_NO_TABLE_ENCRYPTION_PASSWORD 5162
- #define AE_TABLE_NOT_ENCRYPTED 5163
- #define AE_INVALID_ENCRYPTION_VERSION 5164
- #define AE_NO_STORED_PROC_EXEC_RIGHTS 5165
- #define AE_DD_UNSUPPORTED_DEPLOYMENT 5166
- #define AE_INFO_AUTO_CREATION_OCCURRED 5168
- #define AE_INFO_COPY_MADE_BY_CLIENT 5169
- #define AE_DATABASE_REQUIRES_NEW_SERVER 5170
- #define AE_COLUMN_PERMISSION_DENIED 5171
- #define AE_DATABASE_REQUIRES_NEW_CLIENT 5172
- #define AE_INVALID_LINK_NUMBER 5173
- #define AE_LINK_ACTIVATION_FAILED 5174
- #define AE_INDEX_COLLATION_MISMATCH 5175
- #define AE_ILLEGAL_USER_OPERATION 5176
- #define AE_TRIGGER_FAILED 5177
- #define AE_NO_ASA_FUNCTION_FOUND 5178
- #define AE_VALUE_OVERFLOW 5179
- #define AE_UNRECOGNIZED_FTS_VERSION 5180
- #define AE_TRIG_CREATION_FAILED 5181
- #define AE_MEMTABLE_SIZE_EXCEEDED 5182
- #define AE_OUTDATED_CLIENT_VERSION 5183
- #define AE_FREE_TABLE 5184
- #define AE_LOCAL_CONN_RESTRICTED 5185
- /* Supported file types */
- #define ADS_DATABASE_TABLE ADS_DEFAULT
- #define ADS_NTX 1
- #define ADS_CDX 2
- #define ADS_ADT 3
- /* for retrieving file names of tables */
- #define ADS_BASENAME 1
- #define ADS_BASENAMEANDEXT 2
- #define ADS_FULLPATHNAME 3
- #define ADS_DATADICTIONARY_NAME 4
- /* Advantage Optimized Filter (AOF) optimization levels */
- #define ADS_OPTIMIZED_FULL 1
- #define ADS_OPTIMIZED_PART 2
- #define ADS_OPTIMIZED_NONE 3
- /* Advantage Optimized Filter (AOF) options */
- #define ADS_DYNAMIC_AOF 0x00000000 /* default */
- #define ADS_RESOLVE_IMMEDIATE 0x00000001
- #define ADS_RESOLVE_DYNAMIC 0x00000002
- #define ADS_KEYSET_AOF 0x00000004
- #define ADS_FIXED_AOF 0x00000008
- /* Advantage Optimized Filter (AOF) customization options */
- #define ADS_AOF_ADD_RECORD 1
- #define ADS_AOF_REMOVE_RECORD 2
- #define ADS_AOF_TOGGLE_RECORD 3
- /* Stored procedure or trigger type */
- #define ADS_STORED_PROC 0x00000001
- /* some maximum values used by the client */
- /* NOTE: constants meant for string length exclude space for null terminator */
- #define ADS_MAX_DATEMASK 12
- #define ADS_MAX_ERROR_LEN 600
- #define ADS_MAX_INDEX_EXPR_LEN 510 /* this is only accurate for index expressions */
- #define ADS_MAX_KEY_LENGTH 256 /* maximum key value length. This is the max key length
- * of NTX index. CDX and ADI indexes have max key length
- * of 240.
- */
- #define ADS_MAX_FIELD_NAME 128
- #define ADS_MAX_DBF_FIELD_NAME 10 /* maximum length of field name in a DBF */
- #define ADS_MAX_INDEXES 15 /* physical index files, NOT index orders */
- #define ADS_MAX_PATH 260
- #define ADS_MAX_TABLE_NAME 255 /* long file name */
- #define ADS_MAX_TAG_NAME 128
- #define ADS_MAX_TAGS 50 /* maximum for CDX/ADI file */
- #define ADS_MAX_OBJECT_NAME 200 /* maximum length of DD object name */
- #define ADS_MAX_TABLE_AND_PATH ADS_MAX_TABLE_NAME + ADS_MAX_PATH
- /*
- * Valid range of page sizes for ADI indexes. The default page size is 512
- * bytes. Before using another page size, please read the section titled
- * "Index Page Size" in the Advantage Client Engine help file (ace.hlp)
- */
- #define ADS_MIN_ADI_PAGESIZE 512
- #define ADS_MAX_ADI_PAGESIZE 8192
- /* data types */
- #define ADS_TYPE_UNKNOWN 0
- #define ADS_LOGICAL 1 /* 1 byte logical value */
- #define ADS_NUMERIC 2 /* DBF character style numeric */
- #define ADS_DATE 3 /* Date field. With ADS_NTX and ADS_CDX,
- * this is an 8 byte field of the form
- * CCYYMMDD. With ADS_ADT, it is a
- * 4 byte Julian date. */
- #define ADS_STRING 4 /* Character data */
- #define ADS_MEMO 5 /* Variable length character data */
- /* the following are extended data types */
- #define ADS_BINARY 6 /* BLOB - any data */
- #define ADS_IMAGE 7 /* BLOB - bitmap */
- #define ADS_VARCHAR 8 /* variable length character field */
- #define ADS_COMPACTDATE 9 /* DBF date represented with 3 bytes */
- #define ADS_DOUBLE 10 /* IEEE 8 byte floating point */
- #define ADS_INTEGER 11 /* IEEE 4 byte signed long integer */
- /* the following are supported with the ADT file only */
- #define ADS_SHORTINT 12 /* IEEE 2 byte signed short integer */
- #define ADS_TIME 13 /* 4 byte long integer representing
- * milliseconds since midnight */
- #define ADS_TIMESTAMP 14 /* 8 bytes. High order 4 bytes are a
- * long integer representing Julian date.
- * Low order 4 bytes are a long integer
- * representing milliseconds since
- * midnight */
- #define ADS_AUTOINC 15 /* 4 byte auto-increment value */
- #define ADS_RAW 16 /* Untranslated data */
- #define ADS_CURDOUBLE 17 /* IEEE 8 byte floating point currency */
- #define ADS_MONEY 18 /* 8 byte, 4 implied decimal Currency Field */
- #define ADS_LONGLONG 19 /* 8 byte integer */
- /*
- * supported User Defined Function types to be used with AdsRegisterUDF
- */
- #define ADS_INDEX_UDF 1
- /*
- * Constant for AdsMgGetConfigInfo
- */
- #define ADS_MAX_CFG_PATH 256
- /*
- * Constants for AdsMgGetServerType
- * Note ADS_MGMT_NETWARE_SERVER remains for backwards compatibility only
- */
- #define ADS_MGMT_NETWARE_SERVER 1
- #define ADS_MGMT_NETWARE4_OR_OLDER_SERVER 1
- #define ADS_MGMT_NT_SERVER 2
- #define ADS_MGMT_LOCAL_SERVER 3
- #define ADS_MGMT_WIN9X_SERVER 4
- #define ADS_MGMT_NETWARE5_OR_NEWER_SERVER 5
- #define ADS_MGMT_LINUX_SERVER 6
- /*
- * Constants for AdsMgGetLockOwner
- */
- #define ADS_MGMT_NO_LOCK 1
- #define ADS_MGMT_RECORD_LOCK 2
- #define ADS_MGMT_FILE_LOCK 3
- /*
- * Constants for MgGetInstallInfo
- */
- #define ADS_REG_OWNER_LEN 36
- #define ADS_REVISION_LEN 16
- #define ADS_INST_DATE_LEN 16
- #define ADS_OEM_CHAR_NAME_LEN 16
- #define ADS_ANSI_CHAR_NAME_LEN 16
- #define ADS_SERIAL_NUM_LEN 16
- /*
- * Constants for MgGetOpenTables
- */
- #define ADS_MGMT_MAX_PATH 260
- #define ADS_MGMT_PROPRIETARY_LOCKING 1
- #define ADS_MGMT_CDX_LOCKING 2
- #define ADS_MGMT_NTX_LOCKING 3
- #define ADS_MGMT_ADT_LOCKING 4
- #define ADS_MAX_USER_NAME 50
- #define ADS_MAX_ADDRESS_SIZE 30
- /*
- * Management API structures
- */
- typedef struct
- {
- double dPercentCheckSums; /* % of pkts with checksum failures */
- UNSIGNED32 ulTotalPackets; /* Total packets received */
- UNSIGNED32 ulRcvPktOutOfSeq; /* Receive packets out of sequence */
- UNSIGNED32 ulNotLoggedIn; /* Packet owner not logged in */
- UNSIGNED32 ulRcvReqOutOfSeq; /* Receive requests out of sequence */
- UNSIGNED32 ulCheckSumFailures; /* Checksum failures */
- UNSIGNED32 ulDisconnectedUsers; /* Server initiated disconnects */
- UNSIGNED32 ulPartialConnects; /* Removed partial connections */
- UNSIGNED32 ulInvalidPackets; /* Rcvd invalid packets (NT only) */
- UNSIGNED32 ulRecvFromErrors; /* RecvFrom failed (NT only) */
- UNSIGNED32 ulSendToErrors; /* SendTo failed (NT only) */
- } ADS_MGMT_COMM_STATS;
- typedef struct
- {
- UNSIGNED32 ulNumConnections; /* number connections */
- UNSIGNED32 ulNumWorkAreas; /* number work areas */
- UNSIGNED32 ulNumTables; /* number tables */
- UNSIGNED32 ulNumIndexes; /* number indexes */
- UNSIGNED32 ulNumLocks; /* number locks */
- UNSIGNED32 ulUserBufferSize; /* user buffer */
- UNSIGNED32 ulStatDumpInterval; /* statistics dump interval */
- UNSIGNED32 ulErrorLogMax; /* max size of error log */
- UNSIGNED32 ulNumTPSHeaderElems; /* number TPS header elems */
- UNSIGNED32 ulNumTPSVisibilityElems; /* number TPS vis elems */
- UNSIGNED32 ulNumTPSMemoTransElems; /* number TPS memo elems */
- UNSIGNED16 usNumReceiveECBs; /* number rcv ECBs (NLM only) */
- UNSIGNED16 usNumSendECBs; /* number send ECBs (NLM only) */
- UNSIGNED16 usNumBurstPackets; /* number packets per burst */
- UNSIGNED16 usNumWorkerThreads; /* number worker threads */
- UNSIGNED16 usSortBuffSize; /* index sort buffer size */
- UNSIGNED8 ucReserved1; /* reserved */
- UNSIGNED8 ucReserved2; /* reserved */
- UNSIGNED8 aucErrorLog[ADS_MAX_CFG_PATH]; /* error log path */
- UNSIGNED8 aucSemaphore[ADS_MAX_CFG_PATH]; /* semaphore file path */
- UNSIGNED8 aucTransaction[ADS_MAX_CFG_PATH]; /* TPS log file path */
- UNSIGNED8 ucReserved3; /* reserved */
- UNSIGNED8 ucReserved4; /* reserved */
- UNSIGNED16 usSendIPPort; /* NT Service IP send port # */
- UNSIGNED16 usReceiveIPPort; /* NT Service IP rcv port # */
- UNSIGNED8 ucUseIPProtocol; /* Win9x only. Which protocol to use */
- UNSIGNED8 ucFlushEveryUpdate; /* Win9x specific */
- UNSIGNED32 ulGhostTimeout; /* Diconnection time for partial connections */
- UNSIGNED32 ulFlushFrequency; /* For local server only */
- UNSIGNED32 ulKeepAliveTimeOut; /* When not using semaophore files. In milliseconds */
- UNSIGNED8 ucDisplayNWLoginNames; /* Display connections using user names. */
- UNSIGNED8 ucUseSemaphoreFiles; /* Whether or not to use semaphore files */
- UNSIGNED8 ucUseDynamicAOFs;
- UNSIGNED8 ucUseInternet; /* 0 if an Internet port is not specified. */
- UNSIGNED16 usInternetPort; /* Internet Port */
- UNSIGNED16 usMaxConnFailures; /* Maximum Internet connection failures allowed. */
- UNSIGNED32 ulInternetKeepAlive; /* In Milliseconds */
- UNSIGNED16 usCompressionLevel; /* Compression option at server. ADS_COMPRESS_NEVER,
- * ADS_COMPRESS_INTERNET, or ADS_COMPRESS_ALWAYS */
- UNSIGNED16 usReserved5; /* reserved */
- UNSIGNED32 ulReserved6; /* reserved */
- } ADS_MGMT_CONFIG_PARAMS;
- typedef struct
- {
- UNSIGNED32 ulTotalConfigMem; /* Total mem taken by cfg params */
- UNSIGNED32 ulConnectionMem; /* memory taken by connections */
- UNSIGNED32 ulWorkAreaMem; /* memory taken by work areas */
- UNSIGNED32 ulTableMem; /* memory taken by tables */
- UNSIGNED32 ulIndexMem; /* memory taken by indexes */
- UNSIGNED32 ulLockMem; /* memory taken by locks */
- UNSIGNED32 ulUserBufferMem; /* memory taken by user buffer */
- UNSIGNED32 ulTPSHeaderElemMem; /* memory taken by TPS hdr elems */
- UNSIGNED32 ulTPSVisibilityElemMem; /* memory taken by TPS vis elems */
- UNSIGNED32 ulTPSMemoTransElemMem; /* mem taken by TPS memo elems */
- UNSIGNED32 ulReceiveEcbMem; /* mem taken by rcv ECBs (NLM) */
- UNSIGNED32 ulSendEcbMem; /* mem taken by send ECBs (NLM) */
- UNSIGNED32 ulWorkerThreadMem; /* mem taken by worker threads */
- } ADS_MGMT_CONFIG_MEMORY;
- typedef struct
- {
- UNSIGNED32 ulUserOption; /* User option purchased*/
- UNSIGNED8 aucRegisteredOwner[ADS_REG_OWNER_LEN]; /* Registered owner */
- UNSIGNED8 aucVersionStr[ADS_REVISION_LEN]; /* Advantage version */
- UNSIGNED8 aucInstallDate[ADS_INST_DATE_LEN]; /* Install date string */
- UNSIGNED8 aucOemCharName[ADS_OEM_CHAR_NAME_LEN]; /* OEM char language */
- UNSIGNED8 aucAnsiCharName[ADS_ANSI_CHAR_NAME_LEN]; /* ANSI char language */
- UNSIGNED8 aucEvalExpireDate[ADS_INST_DATE_LEN]; /* Eval expiration date */
- UNSIGNED8 aucSerialNumber[ADS_SERIAL_NUM_LEN]; /* Serial number string */
- } ADS_MGMT_INSTALL_INFO;
- typedef struct
- {
- UNSIGNED16 usDays; /* Number of days server has been up */
- UNSIGNED16 usHours; /* Number of hours server has been up */
- UNSIGNED16 usMinutes; /* Number of minutes server has been up */
- UNSIGNED16 usSeconds; /* Number of seconds server has been up */
- } ADS_MGMT_UPTIME_INFO;
- typedef struct
- {
- UNSIGNED32 ulInUse; /* Number of items in use */
- UNSIGNED32 ulMaxUsed; /* Max number of items ever used */
- UNSIGNED32 ulRejected; /* Number of items rejected */
- } ADS_MGMT_USAGE_INFO;
- typedef struct
- {
- UNSIGNED32 ulOperations; /* Number operations since started */
- UNSIGNED32 ulLoggedErrors; /* Number logged errors */
- ADS_MGMT_UPTIME_INFO stUpTime; /* Length of time ADS has been up */
- ADS_MGMT_USAGE_INFO stUsers; /* Users in use, max, rejected */
- ADS_MGMT_USAGE_INFO stConnections; /* Conns in use, max, rejected */
- ADS_MGMT_USAGE_INFO stWorkAreas; /* WAs in use, max, rejected */
- ADS_MGMT_USAGE_INFO stTables; /* Tables in use, max, rejected */
- ADS_MGMT_USAGE_INFO stIndexes; /* Indexes in use, max, rejected */
- ADS_MGMT_USAGE_INFO stLocks; /* Locks in use, max, rejected */
- ADS_MGMT_USAGE_INFO stTpsHeaderElems; /* TPS header elems in use, max */
- ADS_MGMT_USAGE_INFO stTpsVisElems; /* TPS vis elems in use, max */
- ADS_MGMT_USAGE_INFO stTpsMemoElems; /* TPS memo elems in use, max */
- ADS_MGMT_USAGE_INFO stWorkerThreads; /* Worker threads in use, max */
- } ADS_MGMT_ACTIVITY_INFO;
- typedef struct
- {
- UNSIGNED8 aucUserName[ADS_MAX_USER_NAME]; /* Name of connected user */
- UNSIGNED16 usConnNumber; /* NetWare conn # (NLM only) */
- UNSIGNED8 aucAuthUserName[ADS_MAX_USER_NAME];
- UNSIGNED8 aucAddress[ADS_MAX_ADDRESS_SIZE];
- } ADS_MGMT_USER_INFO;
- typedef struct
- {
- UNSIGNED8 aucTableName[ADS_MGMT_MAX_PATH]; /* Fully qualified table name */
- UNSIGNED16 usLockType; /* Advantage locking mode */
- } ADS_MGMT_TABLE_INFO;
- typedef struct
- {
- UNSIGNED8 aucIndexName[ADS_MGMT_MAX_PATH]; /* Fully qualified table name */
- } ADS_MGMT_INDEX_INFO;
- typedef struct
- {
- UNSIGNED32 ulRecordNumber; /* Record number that is locked */
- } ADS_MGMT_RECORD_INFO;
- typedef struct
- {
- UNSIGNED32 ulThreadNumber; /* Thread Number */
- UNSIGNED16 usOpCode; /* Operation in progress */
- UNSIGNED8 aucUserName[ADS_MAX_USER_NAME]; /* Name of user */
- UNSIGNED16 usConnNumber; /* NetWare conn num (NLM only) */
- UNSIGNED16 usReserved1; /* Reserved */
- } ADS_MGMT_THREAD_ACTIVITY;
- /*
- * Data dictionary properties related constants and structure
- */
- typedef struct _ADD_FIELD_DESC_
- {
- UNSIGNED16 usFieldType;
- UNSIGNED16 usFieldLength;
- UNSIGNED16 usFieldDecimal;
- } ADD_FIELD_DESC;
- #define ADS_DD_PROPERTY_NOT_AVAIL 0xFFFF
- #define ADS_DD_MAX_PROPERTY_LEN 0xFFFE
- #define ADS_DD_MAX_OBJECT_NAME_LEN 200
- #define ADS_DD_UNKNOWN_OBJECT 0
- #define ADS_DD_TABLE_OBJECT 1
- #define ADS_DD_RELATION_OBJECT 2
- #define ADS_DD_INDEX_FILE_OBJECT 3
- #define ADS_DD_FIELD_OBJECT 4
- #define ADS_DD_COLUMN_OBJECT 4
- #define ADS_DD_INDEX_OBJECT 5
- #define ADS_DD_VIEW_OBJECT 6
- #define ADS_DD_VIEW_OR_TABLE_OBJECT 7 /* Used in AdsFindFirst/NextTable */
- #define ADS_DD_USER_OBJECT 8
- #define ADS_DD_USER_GROUP_OBJECT 9
- #define ADS_DD_PROCEDURE_OBJECT 10
- #define ADS_DD_DATABASE_OBJECT 11
- #define ADS_DD_LINK_OBJECT 12
- #define ADS_DD_TABLE_VIEW_OR_LINK_OBJECT 13 /* Used in v6.2 AdsFindFirst/NextTable */
- #define ADS_DD_TRIGGER_OBJECT 14
- /* Common properties numbers < 100 */
- #define ADS_DD_COMMENT 1
- #define ADS_DD_VERSION 2
- #define ADS_DD_USER_DEFINED_PROP 3
- /* Database properties between 100 and 199 */
- #define ADS_DD_DEFAULT_TABLE_PATH 100
- #define ADS_DD_ADMIN_PASSWORD 101
- #define ADS_DD_TEMP_TABLE_PATH 102
- #define ADS_DD_LOG_IN_REQUIRED 103
- #define ADS_DD_VERIFY_ACCESS_RIGHTS 104
- #define ADS_DD_ENCRYPT_TABLE_PASSWORD 105
- #define ADS_DD_ENCRYPT_NEW_TABLE 106
- #define ADS_DD_ENABLE_INTERNET 107
- #define ADS_DD_INTERNET_SECURITY_LEVEL 108
- #define ADS_DD_MAX_FAILED_ATTEMPTS 109
- #define ADS_DD_ALLOW_ADSSYS_NET_ACCESS 110
- #define ADS_DD_VERSION_MAJOR 111 /* properties for customer dd version */
- #define ADS_DD_VERSION_MINOR 112
- /* Table properties between 200 and 299 */
- #define ADS_DD_TABLE_VALIDATION_EXPR 200
- #define ADS_DD_TABLE_VALIDATION_MSG 201
- #define ADS_DD_TABLE_PRIMARY_KEY 202
- #define ADS_DD_TABLE_AUTO_CREATE 203
- #define ADS_DD_TABLE_TYPE 204
- #define ADS_DD_TABLE_PATH 205
- #define ADS_DD_TABLE_FIELD_COUNT 206
- #define ADS_DD_TABLE_RI_GRAPH 207
- #define ADS_DD_TABLE_OBJ_ID 208
- #define ADS_DD_TABLE_RI_XY 209
- #define ADS_DD_TABLE_IS_RI_PARENT 210
- #define ADS_DD_TABLE_RELATIVE_PATH 211
- #define ADS_DD_TABLE_CHAR_TYPE 212
- #define ADS_DD_TABLE_DEFAULT_INDEX 213
- #define ADS_DD_TABLE_ENCRYPTION 214
- #define ADS_DD_TABLE_MEMO_BLOCK_SIZE 215
- #define ADS_DD_TABLE_PERMISSION_LEVEL 216
- #define ADS_DD_TABLE_TRIGGER_TYPES 217
- #define ADS_DD_TABLE_TRIGGER_OPTIONS 218
- /* Field properties between 300 - 399 */
- #define ADS_DD_FIELD_DEFAULT_VALUE 300
- #define ADS_DD_FIELD_CAN_NULL 301
- #define ADS_DD_FIELD_MIN_VALUE 302
- #define ADS_DD_FIELD_MAX_VALUE 303
- #define ADS_DD_FIELD_VALIDATION_MSG 304
- #define ADS_DD_FIELD_DEFINITION 305
- #define ADS_DD_FIELD_TYPE 306
- #define ADS_DD_FIELD_LENGTH 307
- #define ADS_DD_FIELD_DECIMAL 308
- #define ADS_DD_FIELD_NUM 309
- /* Index tag properties between 400 - 499 */
- #define ADS_DD_INDEX_FILE_NAME 400
- #define ADS_DD_INDEX_EXPRESSION 401
- #define ADS_DD_INDEX_CONDITION 402
- #define ADS_DD_INDEX_OPTIONS 403
- #define ADS_DD_INDEX_KEY_LENGTH 404
- #define ADS_DD_INDEX_KEY_TYPE 405
- #define ADS_DD_INDEX_FTS_MIN_LENGTH 406
- #define ADS_DD_INDEX_FTS_DELIMITERS 407
- #define ADS_DD_INDEX_FTS_NOISE 408
- #define ADS_DD_INDEX_FTS_DROP_CHARS 409
- #define ADS_DD_INDEX_FTS_CONDITIONAL_CHARS 410
- /* RI properties between 500-599 */
- #define ADS_DD_RI_PARENT_GRAPH 500
- #define ADS_DD_RI_PRIMARY_TABLE 501
- #define ADS_DD_RI_PRIMARY_INDEX 502
- #define ADS_DD_RI_FOREIGN_TABLE 503
- #define ADS_DD_RI_FOREIGN_INDEX 504
- #define ADS_DD_RI_UPDATERULE 505
- #define ADS_DD_RI_DELETERULE 506
- #define ADS_DD_RI_NO_PKEY_ERROR 507
- #define ADS_DD_RI_CASCADE_ERROR 508
- /* User properties between 600-699 */
- #define ADS_DD_USER_GROUP_NAME 600
- /* View properties between 700-749 */
- #define ADS_DD_VIEW_STMT 700
- #define ADS_DD_VIEW_STMT_LEN 701
- /* Stored procedure properties 800-899 */
- #define ADS_DD_PROC_INPUT 800
- #define ADS_DD_PROC_OUTPUT 801
- #define ADS_DD_PROC_DLL_NAME 802
- #define ADS_DD_PROC_DLL_FUNCTION_NAME 803
- #define ADS_DD_PROC_INVOKE_OPTION 804
- /* Index file properties 900-999 */
- #define ADS_DD_INDEX_FILE_PATH 900
- #define ADS_DD_INDEX_FILE_PAGESIZE 901
- /*
- * Object rights properties 1001 - 1099 . They can be used
- * with either user or user group objects.
- */
- #define ADS_DD_TABLES_RIGHTS 1001
- #define ADS_DD_VIEWS_RIGHTS 1002
- #define ADS_DD_PROCS_RIGHTS 1003
- #define ADS_DD_OBJECTS_RIGHTS 1004
- #define ADS_DD_FREE_TABLES_RIGHTS 1005
- /* User Properties 1101 - 1199 */
- #define ADS_DD_USER_PASSWORD 1101
- #define ADS_DD_USER_GROUP_MEMBERSHIP 1102
- #define ADS_DD_USER_BAD_LOGINS 1103
- /* User group Properties 1201 - 1299 */
- /* None at this moment. */
- /* Link properties 1301 - 1399 */
- #define ADS_DD_LINK_PATH 1300
- #define ADS_DD_LINK_OPTIONS 1301
- #define ADS_DD_LINK_USERNAME 1302
- /* Trigger properties 1400 - 1499 */
- #define ADS_DD_TRIG_TABLEID 1400
- #define ADS_DD_TRIG_EVENT_TYPE 1401
- #define ADS_DD_TRIG_TRIGGER_TYPE 1402
- #define ADS_DD_TRIG_CONTAINER_TYPE 1403
- #define ADS_DD_TRIG_CONTAINER 1404
- #define ADS_DD_TRIG_FUNCTION_NAME 1405
- #define ADS_DD_TRIG_PRIORITY 1406
- #define ADS_DD_TRIG_OPTIONS 1407
- #define ADS_DD_TRIG_TABLENAME 1408
- #define ADS_DD_LEVEL_0 0
- #define ADS_DD_LEVEL_1 1
- #define ADS_DD_LEVEL_2 2
- /* Referential Integrity (RI) update and delete rules */
- #define ADS_DD_RI_CASCADE 1
- #define ADS_DD_RI_RESTRICT 2
- #define ADS_DD_RI_SETNULL 3
- #define ADS_DD_RI_SETDEFAULT 4
- /* Default Field Value Options */
- #define ADS_DD_DFV_UNKNOWN 1
- #define ADS_DD_DFV_NONE 2
- #define ADS_DD_DFV_VALUES_STORED 3
- /* Supported permissions in the data dictionary */
- #define ADS_PERMISSION_READ 0x00000001
- #define ADS_PERMISSION_UPDATE 0x00000002
- #define ADS_PERMISSION_EXECUTE 0x00000004
- #define ADS_PERMISSION_INHERIT 0x00000008
- #define ADS_PERMISSION_INSERT 0x00000010
- #define ADS_PERMISSION_DELETE 0x00000020
- #define ADS_PERMISSION_LINK_ACCESS 0x00000040
- #define ADS_PERMISSION_ALL 0xFFFFFFFF
- /* Link DD options */
- #define ADS_LINK_GLOBAL 0x00000001
- #define ADS_LINK_AUTH_ACTIVE_USER 0x00000002
- #define ADS_LINK_PATH_IS_STATIC 0x00000004
- /* Trigger event types */
- #define ADS_TRIGEVENT_INSERT 1
- #define ADS_TRIGEVENT_UPDATE 2
- #define ADS_TRIGEVENT_DELETE 3
- /* Trigger types */
- #define ADS_TRIGTYPE_BEFORE 0x00000001
- #define ADS_TRIGTYPE_INSTEADOF 0x00000002
- #define ADS_TRIGTYPE_AFTER 0x00000004
- /* Trigger container types */
- #define ADS_TRIG_WIN32DLL 1
- #define ADS_TRIG_COM 2
- #define ADS_TRIG_SCRIPT 3
- /*
- * Trigger options, if changed or adding more please inspect code
- * in RemoveTriggerFromDictionary
- */
- #define ADS_TRIGOPTIONS_NO_VALUES 0x00000000
- #define ADS_TRIGOPTIONS_WANT_VALUES 0x00000001
- #define ADS_TRIGOPTIONS_WANT_MEMOS_AND_BLOBS 0x00000002
- #define ADS_TRIGOPTIONS_DEFAULT 0x00000003 /* default is to include vals and memos */
- #define ADS_TRIGOPTIONS_NO_TRANSACTION 0x00000004 /* don't use implicit transactions */
- /*
- * Table permission verification levels.
- * level 1 is all columns searchable, even those without permission.
- * level 2 is default. Permission to the column is required to search or filter on a column.
- * level 3 is most restricted. Only static SQL cursor is allowed.
- */
- #define ADS_DD_TABLE_PERMISSION_LEVEL_1 1
- #define ADS_DD_TABLE_PERMISSION_LEVEL_2 2
- #define ADS_DD_TABLE_PERMISSION_LEVEL_3 3
- /* stored procedure functions must be of this type */
- #ifdef WINAPI
- typedef UNSIGNED32 (WINAPI *STORED_PROCEDURE_PTR)
- (
- UNSIGNED32 ulConnectionID, // (I) value used to associate a user/connection
- // and can be used to track the state
- UNSIGNED8 *pucUserName, // (I) the user name who invoked this procedure
- UNSIGNED8 *pucPassword, // (I) the user's password in encrypted form
- UNSIGNED8 *pucProcName, // (I) the stored procedure name
- UNSIGNED32 ulRecNum, // (I) reserved for triggers
- UNSIGNED8 *pucTable1, // (I) table one. For Stored Proc this table
- // contains all input parameters. For
- // triggers, it contains the original field
- // values if the trigger is an OnUpdate or
- // OnDelete
- UNSIGNED8 *pucTable2 // (I) table two. For Stored Proc this table
- // is empty and the users function will
- // optionally add rows to it as output.
- // For triggers, it contains the new field
- // values if the trigger is an OnUpdate or
- // OnInsert
- );
- typedef UNSIGNED32 (WINAPI *STARTUP_PROCEDURE_PTR)
- (
- UNSIGNED32 ulConnectionID, // (I) value used to associate a user/connection
- // and can be used to track the state
- UNSIGNED8 *pucUserName, // (I) the user name who invoked this procedure
- UNSIGNED8 *pucPassword // (I) the user's password in encrypted form
- );
- typedef UNSIGNED32 (WINAPI *SHUTDOWN_PROCEDURE_PTR)
- (
- UNSIGNED32 ulConnectionID, // (I) value used to associate a user/connection
- // and can be used to track the state
- UNSIGNED8 *pucUserName, // (I) the user name who invoked this procedure
- UNSIGNED8 *pucPassword // (I) the user's password in encrypted form
- );
- typedef UNSIGNED32 (WINAPI *STORED_PROCEDURE2_PTR)
- (
- UNSIGNED32 ulConnectionID, // (I) value used to associate a user/connection
- // and can be used to track the state
- ADSHANDLE hConnection, // (I) active connection to be used by the procedure
- UNSIGNED32 *pulNumRowsAffected // (O) the number of rows affected
- );
- typedef UNSIGNED32 (WINAPI *STARTUP_PROCEDURE2_PTR)
- (
- UNSIGNED32 ulConnectionID, // (I) value used to associate a user/connection
- // and can be used to track the state
- ADSHANDLE hConnection // (I) active connection to be used by the procedure
- );
- typedef UNSIGNED32 (WINAPI *SHUTDOWN_PROCEDURE2_PTR)
- (
- UNSIGNED32 ulConnectionID, // (I) value used to associate a user/connection
- // and can be used to track the state
- ADSHANDLE hConnection // (I) active connection to be used by the procedure
- );
- typedef UNSIGNED32 (WINAPI *TRIGGER_FUNCTION_PTR)
- (
- UNSIGNED32 ulConnectionID, // (I) Unique ID identifying the user causing this trig
- ADSHANDLE hConnection, // (I) Active ACE connection handle user can perform
- // operations on
- UNSIGNED8 *pucTriggerName, // (I) Name of trigger in the dictionary
- UNSIGNED8 *pucTableName, // (I) Name of the base table that caused the trigger
- UNSIGNED32 ulEventType, // (I) Flag with event type (insert, update, etc.)
- UNSIGNED32 ulTriggerType, // (I) Flag with trigger type (before, after, etc.)
- UNSIGNED32 ulRecNo // (I) Record number of the record being modified
- );
- typedef UNSIGNED32 (WINAPI *GET_INTERFACE_VERSION_PTR)();
- #endif // WINAPI
- /*
- * This macro allows a numeric field value to be passed into functions
- * that expect field names. If the user prefers to use column number,
- * then calls like this can be made:
- * ulRet = AdsGetDouble( hTable, ADSFIELD( 1 ), &dVal );
- * Where the first column is a numeric value to retrieve.
- */
- #define ADSFIELD(x) ((unsigned char*)(long)( x ))
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- #if defined( NLM ) || defined( ADS_LINUX )
- #if !defined( SNAPDUMP ) // Snapdump is now built as a WIN32 app so WINAPI is defined
- #define WINAPI /* nothing */
- #endif
- #endif
- UNSIGNED32 ENTRYPOINT AdsAddCustomKey( ADSHANDLE hIndex );
- UNSIGNED32 ENTRYPOINT AdsAppendRecord( ADSHANDLE hTable );
- UNSIGNED32 ENTRYPOINT AdsApplicationExit( void );
- UNSIGNED32 ENTRYPOINT AdsAtBOF( ADSHANDLE hTable,
- UNSIGNED16 *pbBof );
- UNSIGNED32 ENTRYPOINT AdsAtEOF( ADSHANDLE hTable,
- UNSIGNED16 *pbEof );
- UNSIGNED32 ENTRYPOINT AdsBeginTransaction( ADSHANDLE hConnect );
- UNSIGNED32 ENTRYPOINT AdsBinaryToFile( ADSHANDLE hTable,
- UNSIGNED8 *pucFldName,
- UNSIGNED8 *pucFileName );
- UNSIGNED32 ENTRYPOINT AdsCacheOpenCursors( UNSIGNED16 usOpen );
- UNSIGNED32 ENTRYPOINT AdsCacheOpenTables( UNSIGNED16 usOpen );
- UNSIGNED32 ENTRYPOINT AdsCacheRecords( ADSHANDLE hTable,
- UNSIGNED16 usNumRecords );
- UNSIGNED32 ENTRYPOINT AdsCancelUpdate( ADSHANDLE hTable );
- UNSIGNED32 ENTRYPOINT AdsCheckExistence( ADSHANDLE hConnect,
- UNSIGNED8 *pucFileName,
- UNSIGNED16 *pusOnDisk );
- UNSIGNED32 ENTRYPOINT AdsClearAllScopes( ADSHANDLE hTable );
- UNSIGNED32 ENTRYPOINT AdsClearDefault( void );
- UNSIGNED32 ENTRYPOINT AdsClearFilter( ADSHANDLE hTable );
- UNSIGNED32 ENTRYPOINT AdsClearRelation( ADSHANDLE hTableParent );
- UNSIGNED32 ENTRYPOINT AdsClearScope( ADSHANDLE hIndex,
- UNSIGNED16 usScopeOption );
- UNSIGNED32 ENTRYPOINT AdsCloneTable( ADSHANDLE hTable,
- ADSHANDLE *phClone );
- UNSIGNED32 ENTRYPOINT AdsCloseAllIndexes( ADSHANDLE hTable );
- UNSIGNED32 ENTRYPOINT AdsCloseAllTables( void );
- UNSIGNED32 ENTRYPOINT AdsCloseIndex( ADSHANDLE hIndex );
- UNSIGNED32 ENTRYPOINT AdsCloseTable( ADSHANDLE hTable );
- UNSIGNED32 ENTRYPOINT AdsCloseCachedTables( ADSHANDLE hConnection );
- UNSIGNED32 ENTRYPOINT AdsCommitTransaction( ADSHANDLE hConnect );
- UNSIGNED32 ENTRYPOINT AdsConnect( UNSIGNED8 *pucServerName,
- ADSHANDLE *phConnect );
- UNSIGNED32 ENTRYPOINT AdsConnect26( UNSIGNED8 *pucServerName,
- UNSIGNED16 usServerTypes,
- ADSHANDLE *phConnect );
- UNSIGNED32 ENTRYPOINT AdsConnect60( UNSIGNED8 *pucServerPath,
- UNSIGNED16 usServerTypes,
- UNSIGNED8 *pucUserName,
- UNSIGNED8 *pucPassword,
- UNSIGNED32 ulOptions,
- ADSHANDLE *phConnect );
- UNSIGNED32 ENTRYPOINT AdsContinue( ADSHANDLE hTable,
- UNSIGNED16 *pbFound );
- UNSIGNED32 ENTRYPOINT AdsConvertTable( ADSHANDLE hObj,
- UNSIGNED16 usFilterOption,
- UNSIGNED8 *pucFile,
- UNSIGNED16 usTableType );
- UNSIGNED32 ENTRYPOINT AdsCopyTable( ADSHANDLE hObj,
- UNSIGNED16 usFilterOption,
- UNSIGNED8 *pucFile );
- UNSIGNED32 ENTRYPOINT AdsCopyTableContents( ADSHANDLE hObjFrom,
- ADSHANDLE hTableTo,
- UNSIGNED16 usFilterOption );
- UNSIGNED32 ENTRYPOINT AdsCopyTableStructure( ADSHANDLE hTable,
- UNSIGNED8 *pucFile );
- UNSIGNED32 ENTRYPOINT AdsCreateIndex( ADSHANDLE hObj,
- UNSIGNED8 *pucFileName,
- UNSIGNED8 *pucTag,
- UNSIGNED8 *pucExpr,
- UNSIGNED8 *pucCondition,
- UNSIGNED8 *pucWhile,
- UNSIGNED32 ulOptions,
- …
Large files files are truncated, but you can click here to view the full file