Database error codes
Namespace: Wiker.WIDatabaseAssembly:
Syntax
C# |
---|
public enum eDBErrorCodes |
Visual Basic |
---|
Public Enumeration eDBErrorCodes |
Visual C++ |
---|
public enum class eDBErrorCodes |
Members
Member name | Value | Description | |
---|---|---|---|
None | 0 | No error | |
DatabaseNotOpen | 1 | Database not open | |
ReaderNotOpen | 2 | Database reader not opened | |
Exception | 3 | Generic .Net Exception occurred | |
ErrorCommunicatingToDB | 4 | Error communicating to the database | |
InvalidServer | 5 | Invalid server name | |
InvalidPort | 6 | Invalid server port number | |
InvalidInitialCatalog | 7 | Invalid initial catalog/database name | |
InvalidUserID | 8 | Invalid User ID/Login name | |
InvalidPassword | 9 | Invalid password | |
InvalidDatabase | 10 | Invalid database | |
InvalidColumn | 11 | Invalid column name | |
InvalidColumnIndex | 12 | Invalid column number/index | |
InvalidDateTime | 13 | Value could not be converted to DateTime | |
MissingColumns | 14 | Missing columns | |
MissingTable | 15 | Missing table name | |
MissingDatabase | 16 | Missing Database name | |
InvalidDatabaseType | 17 | Invalid database type | |
MissingIndex | 18 | Missing Index name | |
NullResult | 19 | Returned null | |
TableAlreadyExists | 20 | A table with the same name already exists in database |