com.mindoo.domino.jna.errors.errortexts.IDbdrvErr Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of domino-jna Show documentation
Show all versions of domino-jna Show documentation
Java project to access the HCL Domino C API using Java Native Access (JNA)
package com.mindoo.domino.jna.errors.errortexts;
public interface IDbdrvErr extends IGlobalErr {
@ErrorText(text="Insufficient arguments for database function")
short ERR_DBD_INSUFF_ARGS = PKG_DBD+1;
@ErrorText(text="Incorrect datatype for database function")
short ERR_DBD_DATATYPE = PKG_DBD+2;
@ErrorText(text="The necessary external database driver cannot be located")
short ERR_DBD_CLASSDRV = PKG_DBD+3;
@ErrorText(text="Database sessions still open - must be closed by the time Term is called")
short ERR_DBD_SESSIONS_ACTIVE = PKG_DBD+4;
@ErrorText(text="Cannot open specified database, no match for specified Replica ID can be found")
short ERR_DBD_RDATABASE = PKG_DBD+5;
@ErrorText(text="The specified database driver does not support this function")
short ERR_DBD_FUNCTION = PKG_DBD+6;
@ErrorText(text="Too many arguments for database function")
short ERR_DBD_TOOMANY_ARGS = PKG_DBD+7;
@ErrorText(text="The data types of two matching results are incompatible")
short ERR_DBD_INCOMPAT_TYPE = PKG_DBD+8;
@ErrorText(text="The table was modified - retry after updating")
short ERR_DBD_MOD_RETRY = PKG_DBD+9;
@ErrorText(text="A view of that name cannot be found in the specified database")
short ERR_DBD_NO_VIEW = PKG_DBD+10;
@ErrorText(text="The specified database lookup generated more than 65,000 bytes of results, which is too large for Notes to handle in this context.")
short ERR_DBD_64K = PKG_DBD+12;
@ErrorText(text="Driver does not have capability required")
short ERR_DBD_NOT_CAPABLE = PKG_DBD+21;
@ErrorText(text="Insufficient user privileges")
short ERR_DBD_NOT_ALLOWED = PKG_DBD+22;
@ErrorText(text="DataLens support system not initialized")
short ERR_DBD_NOT_INITIALIZED = PKG_DBD+23;
@ErrorText(text="Complete driver/connection failure")
short ERR_DBD_SYSTEM_FAILURE = PKG_DBD+24;
@ErrorText(text="Unrecoverable network or IPC error")
short ERR_DBD_TRANSPORT_ERROR = PKG_DBD+25;
@ErrorText(text="Network connection not responding")
short ERR_DBD_TRANSPORT_FAILURE = PKG_DBD+26;
@ErrorText(text="Tried to close parent with active child")
short ERR_DBD_CHILD_HANDLE_OPEN = PKG_DBD+27;
@ErrorText(text="Bad connection handle")
short ERR_DBD_BAD_CONNECTION_HANDLE = PKG_DBD+28;
@ErrorText(text="Invalid browsing handle")
short ERR_DBD_BAD_BROWSER_HANDLE = PKG_DBD+29;
@ErrorText(text="Gab couldn't allocate memory for handle")
short ERR_DBD_NO_HANDLE_MEMORY = PKG_DBD+30;
@ErrorText(text="Bad name for driver or database")
short ERR_DBD_BAD_NAME = PKG_DBD+31;
@ErrorText(text="Driver located but could not be loaded")
short ERR_DBD_DRIVER_LOAD_ERROR = PKG_DBD+32;
@ErrorText(text="Not a valid collection node name")
short ERR_DBD_NO_COLLECTION_NODE = PKG_DBD+33;
@ErrorText(text="No more records or browse items")
short ERR_DBD_END_OF_DATA = PKG_DBD+34;
@ErrorText(text="Browser handle not positioned yet")
short ERR_DBD_UNPOSITIONED = PKG_DBD+35;
@ErrorText(text="Returned name truncated to fit in buffer")
short ERR_DBD_NAME_TRUNCATED = PKG_DBD+36;
@ErrorText(text="Bad user/application string")
short ERR_DBD_BAD_USER_NAME = PKG_DBD+37;
@ErrorText(text="Bad authorization string")
short ERR_DBD_BAD_PASSWORD = PKG_DBD+38;
@ErrorText(text="Memory allocation/deallocation error")
short ERR_DBD_DRIVER_OUT_OF_MEMORY = PKG_DBD+39;
@ErrorText(text="Driver-specific error")
short ERR_DBD_DRIVER_FAILURE = PKG_DBD+40;
@ErrorText(text="Can't locate driver registration list")
short ERR_DBD_NO_REGISTRATION = PKG_DBD+41;
@ErrorText(text="Can't read browse item")
short ERR_DBD_BAD_BROWSE_DATA = PKG_DBD+42;
@ErrorText(text="Can't read registration data")
short ERR_DBD_BROWSE_ACCESS_ERROR = PKG_DBD+43;
@ErrorText(text="Bad argument to driver")
short ERR_DBD_INVALID_ARGUMENT = PKG_DBD+44;
@ErrorText(text="Return handle to already open driver or database")
short ERR_DBD_DUPLICATE_HANDLE = PKG_DBD+45;
@ErrorText(text="Warning: database opened with another userid")
short ERR_DBD_MULTIPLE_USERS = PKG_DBD+46;
@ErrorText(text="Attempt to alter read-only data")
short ERR_DBD_READ_ONLY = PKG_DBD+52;
@ErrorText(text="Database memory exhausted")
short ERR_DBD_NO_ROOM = PKG_DBD+53;
@ErrorText(text="Current transaction aborted")
short ERR_DBD_TRANSACTION_ABORT = PKG_DBD+54;
@ErrorText(text="Driver uses less restrictive model than application")
short ERR_DBD_BAD_MEMORY_MANAGER = PKG_DBD+55;
@ErrorText(text="Database could not be located")
short ERR_DBD_BAD_DATABASE_NAME = PKG_DBD+56;
@ErrorText(text="Database already opened by current thread")
short ERR_DBD_OPEN_DATABASE = PKG_DBD+57;
@ErrorText(text="Cursor still open on close database request")
short ERR_DBD_OPEN_CURSOR = PKG_DBD+58;
@ErrorText(text="Requested extension does not exist")
short ERR_DBD_BAD_EXTENSION = PKG_DBD+59;
@ErrorText(text="Invalid action")
short ERR_DBD_BAD_ACTION = PKG_DBD+60;
@ErrorText(text="Column does not exist")
short ERR_DBD_BAD_COLUMN = PKG_DBD+61;
@ErrorText(text="New name for table or column is invalid")
short ERR_DBD_BAD_NEW_NAME = PKG_DBD+62;
@ErrorText(text="Table or view does not exist")
short ERR_DBD_BAD_TABLE = PKG_DBD+63;
@ErrorText(text="Input comment/label has been truncated")
short ERR_DBD_TRUNCATED = PKG_DBD+64;
@ErrorText(text="Invalid index specification")
short ERR_DBD_BAD_INDEX = PKG_DBD+65;
@ErrorText(text="Invalid column, etc. count")
short ERR_DBD_BAD_COUNT = PKG_DBD+66;
@ErrorText(text="Invalid query specification")
short ERR_DBD_BAD_QUERY = PKG_DBD+67;
@ErrorText(text="Invalid synonym specification")
short ERR_DBD_BAD_SYNONYM = PKG_DBD+68;
@ErrorText(text="Invalid privilege specification")
short ERR_DBD_BAD_PRIVILEGE = PKG_DBD+69;
@ErrorText(text="Invalid User ID specification")
short ERR_DBD_BAD_USERID = PKG_DBD+70;
@ErrorText(text="Invalid wheretree specification")
short ERR_DBD_BAD_WHERE = PKG_DBD+71;
@ErrorText(text="Cursor storage is full")
short ERR_DBD_TOO_MANY_CURSORS = PKG_DBD+72;
@ErrorText(text="Invalid cursor handle")
short ERR_DBD_BAD_CURSOR = PKG_DBD+73;
@ErrorText(text="Attempt to access unopened item")
short ERR_DBD_NOT_OPEN = PKG_DBD+74;
@ErrorText(text="Invalid statement handle")
short ERR_DBD_BAD_STATEMENT = PKG_DBD+75;
@ErrorText(text="Invalid xferblock format")
short ERR_DBD_BAD_XFERBLOCK = PKG_DBD+76;
@ErrorText(text="Cursor is open")
short ERR_DBD_NOT_CLOSED = PKG_DBD+77;
@ErrorText(text="Too few values supplied to where-parms")
short ERR_DBD_TOO_FEW_PARAMETERS = PKG_DBD+78;
@ErrorText(text="Too many values supplied to where-parms")
short ERR_DBD_TOO_MANY_PARAMETERS = PKG_DBD+79;
@ErrorText(text="Tried to move cursor past existing rows")
short ERR_DBD_BAD_ROW = PKG_DBD+80;
@ErrorText(text="First record has not arrived yet")
short ERR_DBD_NO_DATA_YET = PKG_DBD+81;
@ErrorText(text="Referenced column does not contain long data")
short ERR_DBD_NO_LONG_DATA = PKG_DBD+82;
@ErrorText(text="Driver limit on open long data columns exceeded")
short ERR_DBD_TOO_MANY_LONGS = PKG_DBD+83;
@ErrorText(text="Invalid buffer length")
short ERR_DBD_BAD_LENGTH = PKG_DBD+84;
@ErrorText(text="Invalid position specified in long data column")
short ERR_DBD_BAD_POSITION = PKG_DBD+85;
@ErrorText(text="An inserted record failed a view check")
short ERR_DBD_BAD_VIEW_CHECK = PKG_DBD+86;
@ErrorText(text="Setting field null not permitted")
short ERR_DBD_NO_NULLS = PKG_DBD+87;
@ErrorText(text="Can't add duplicate val to unique index")
short ERR_DBD_NOT_UNIQUE = PKG_DBD+88;
@ErrorText(text="Data type mismatch on output")
short ERR_DBD_BAD_DATA = PKG_DBD+89;
@ErrorText(text="Proposed statement name is invalid")
short ERR_DBD_BAD_STATEMENT_NAME = PKG_DBD+90;
@ErrorText(text="Attempt to open a table already open")
short ERR_DBD_ALREADY_OPEN = PKG_DBD+91;
@ErrorText(text="Isolation level cannot be altered")
short ERR_DBD_ALREADY_ISOLATED = PKG_DBD+92;
@ErrorText(text="Invalid isolation level specification")
short ERR_DBD_BAD_ISOLATION = PKG_DBD+93;
@ErrorText(text="Browser is not positioned at a table")
short ERR_DBD_NO_CURRENT_TABLE = PKG_DBD+94;
@ErrorText(text="Browser is not positioned at a column")
short ERR_DBD_NO_CURRENT_COLUMN = PKG_DBD+95;
@ErrorText(text="Second open cursor with no change to result set")
short ERR_DBD_SAME_RESULT = PKG_DBD+96;
@ErrorText(text="Can't translate LMBCS code to native")
short ERR_DBD_UNTRANSLATABLE_LMBCS = PKG_DBD+97;
@ErrorText(text="Cursor not at record for update or deletion")
short ERR_DBD_NO_CURRENT_RECORD = PKG_DBD+98;
@ErrorText(text="Unacceptable string truncation")
short ERR_DBD_STRING_TRUNCATED = PKG_DBD+99;
@ErrorText(text="Unrecoverable transfer error")
short ERR_DBD_TRANSFER_ERROR = PKG_DBD+100;
@ErrorText(text="Driver connection block corrupted")
short ERR_DBD_BAD_DCCB = PKG_DBD+101;
@ErrorText(text="Database connection block corrupted")
short ERR_DBD_BAD_DDCB = PKG_DBD+102;
@ErrorText(text="Corrupted envblk")
short ERR_DBD_BAD_ENVBLK = PKG_DBD+103;
@ErrorText(text="Invalid querytree")
short ERR_DBD_BAD_QUERYTREE = PKG_DBD+104;
@ErrorText(text="Invalid tabname")
short ERR_DBD_BAD_TABNAME = PKG_DBD+105;
@ErrorText(text="Invalid catalog browser")
short ERR_DBD_BAD_CBROWSER = PKG_DBD+106;
@ErrorText(text="Invalid colid")
short ERR_DBD_BAD_COLID = PKG_DBD+107;
@ErrorText(text="Invalid wherenode")
short ERR_DBD_BAD_WHERENODE = PKG_DBD+108;
@ErrorText(text="New column definition is not valid")
short ERR_DBD_BAD_NEW_DEFINITION = PKG_DBD+109;
@ErrorText(text="Scroll option with current cursor invalid")
short ERR_DBD_SCROLLED_CURSOR = PKG_DBD+110;
@ErrorText(text="Cardinality error")
short ERR_DBD_CARDINALITY = PKG_DBD+111;
@ErrorText(text="Back end database-specific error")
short ERR_DBD_BACKEND_DB_ERROR = PKG_DBD+112;
@ErrorText(text="Configuration string is not valid")
short ERR_DBD_BAD_CONFIG_STRING = PKG_DBD+113;
@ErrorText(text="Driver can't use application's platform")
short ERR_DBD_BAD_PLATFORM = PKG_DBD+114;
@ErrorText(text="Translation table cannot be loaded")
short ERR_DBD_CODEPAGE_LOAD_ERROR = PKG_DBD+115;
@ErrorText(text="Memory map error")
short ERR_DBD_MAPMEM_ERROR = PKG_DBD+116;
@ErrorText(text="Required resource cannot be loaded")
short ERR_DBD_RESOURCE_LOAD_ERROR = PKG_DBD+117;
@ErrorText(text="Error building statdef, no details")
short ERR_DBD_STATUS_ERROR = PKG_DBD+118;
@ErrorText(text="Column type is not valid")
short ERR_DBD_UNTRANSLATABLE_COLTYPE = PKG_DBD+119;
@ErrorText(text="Operation on statement aborted")
short ERR_DBD_STATEMENT_ABORT = PKG_DBD+120;
@ErrorText(text="Data is too long for column")
short ERR_DBD_DATA_TOO_LONG = PKG_DBD+121;
@ErrorText(text="Numeric value is outside accepted range")
short ERR_DBD_BAD_NUMERIC_VALUE = PKG_DBD+122;
@ErrorText(text="Function call is not allowed in state")
short ERR_DBD_STATE_VIOLATION = PKG_DBD+123;
@ErrorText(text="Browser still open on close driver/database")
short ERR_DBD_DEPENDENT_BROWSER_OPEN = PKG_DBD+124;
@ErrorText(text="Database not specified")
short ERR_DBD_NO_DB = PKG_DBD+125;
@ErrorText(text=" DBD internal memory structure for database is Invalid!")
short ERR_DBD_STRUCT_IS_INVALID = PKG_DBD+126;
@ErrorText(text=" DBD internal memory structure for database is NULL!")
short ERR_DBD_STRUCT_IS_NULL = PKG_DBD+127;
@ErrorText(text="Invalid session handle")
short ERR_DAL_BAD_SESSION = PKG_DBD+130;
@ErrorText(text="Invalid index to queue")
short ERR_DAL_BAD_QINDEX = PKG_DBD+131;
@ErrorText(text="Invalid registration file entry")
short ERR_DAL_REGFILE_ERROR = PKG_DBD+132;
@ErrorText(text="Too few data-source connection levels")
short ERR_DAL_MORE_LEVELS_REQUIRED = PKG_DBD+133;
@ErrorText(text="At least one session is still open")
short ERR_DAL_OPEN_SESSION = PKG_DBD+134;
@ErrorText(text="Unknown database command")
short ERR_DAL_BAD_COMMAND = PKG_DBD+135;
@ErrorText(text="Too few command arguments")
short ERR_DAL_TOO_FEW_ARGS = PKG_DBD+136;
@ErrorText(text="User ID required")
short ERR_DAL_USERID_REQUIRED = PKG_DBD+137;
@ErrorText(text="Password required")
short ERR_DAL_PASSWORD_REQUIRED = PKG_DBD+138;
@ErrorText(text="Too many command arguments")
short ERR_DAL_TOO_MANY_ARGS = PKG_DBD+139;
@ErrorText(text="Driver's API version is not supported")
short ERR_DAL_BAD_API_VERSION = PKG_DBD+140;
@ErrorText(text="Memory allocation/deallocation error")
short ERR_DAL_MEMORY_ERROR = PKG_DBD+141 ;
@ErrorText(text="Invalid command argument")
short ERR_DAL_INVALID_ARGUMENT = PKG_DBD+142;
@ErrorText(text="Driver has insufficient capabilities")
short ERR_DAL_DRIVER_NOT_CAPABLE = PKG_DBD+143;
@ErrorText(text="Error loading driver")
short ERR_DAL_DRIVER_LOAD_ERROR = PKG_DBD+144;
@ErrorText(text="Requested column doesn't exist")
short ERR_DAL_BAD_COLUMN = PKG_DBD+145;
@ErrorText(text="Unsupported data type")
short ERR_DAL_UNSUPPORTED_TYPE = PKG_DBD+146;
@ErrorText(text="Command argument string too long")
short ERR_DAL_ARG_TOO_LONG = PKG_DBD+147;
@ErrorText(text="Data conversion error")
short ERR_DAL_CONVERSION_ERROR = PKG_DBD+148;
@ErrorText(text="Data-source charset out-of-range")
short ERR_DAL_INVALID_CHARSET = PKG_DBD+149;
@ErrorText(text="Exception error")
short ERR_DAL_EXCEPTION_ERROR = PKG_DBD+171;
@ErrorText(text="Connection cancelled")
short ERR_DAL_CONNECTCANCEL_ERROR = PKG_DBD+172;
@ErrorText(text="Must supply ID and password in script")
short ERR_DAL_SERVERPROCESS_ERROR = PKG_DBD+173;
@ErrorText(text="@DbCommand contains unsupported function")
short ERR_DAL_UNSUPPORTEDFUNC_ERROR = PKG_DBD+174;
@ErrorText(text="Could not prepare SQL statement - possible invalid column or table name")
short ERR_DAL_SQLPREPARE_ERROR = PKG_DBD+175;
@ErrorText(text="Could not execute @db function")
short ERR_DAL_SQLEXECUTE_ERROR = PKG_DBD+176;
@ErrorText(text="Bad authorization string")
short ERR_DAL_PASSWORD_ERROR = PKG_DBD+177;
@ErrorText(text="Null values found - cancelling @db function")
short ERR_DAL_NULLSFOUND_ERROR = PKG_DBD+178;
@ErrorText(text="Invalid NULL replace value")
short ERR_DAL_INVALID_NULL_REPLACE_ERROR = PKG_DBD+179;
@ErrorText(text="The specified database lookup generated more than 65,534 results, which is too large for Notes to handle.")
short ERR_DBD_RESULT_COUNT_LIMIT_EXCEED = PKG_DBD+180;
@ErrorText(text="DBD cannot get the list of address books for the local server.")
short ERR_DBD_CANT_GET_SERVER_NABS = PKG_DBD+181;
}