dotConnect for SQLite Documentation
Devart.Data.SQLite Namespace / SQLiteErrorCode Enumeration

In This Topic
    SQLiteErrorCode Enumeration
    In This Topic
    Determines the type of error that occurred in the database.
    Syntax
    'Declaration
     
    Public Enum SQLiteErrorCode 
       Inherits System.Enum
       Implements System.IComparableSystem.IConvertibleSystem.IFormattable 
    Members
    MemberDescription
    AbortCallback routine requested an abort.
    AuthAuthorization denied.
    BusyThe database file is locked.
    CantOpenUnable to open the database file.
    ConstraintAbort due to a constraint violation.
    CorruptThe database disk image is malformed.
    Donesqlite3_step() has finished executing.
    EmptyDatabase is empty.
    ErrorSQL error or missing database.
    FormatAuxiliary database format error.
    FullInsertion failed because database is full.
    InternalInternal logic error in SQLite.
    InterruptOperation terminated by sqlite3_interrupt().
    IOErrSome kind of disk I/O error occurred.
    LockedA table in the database is locked.
    MismatchData type mismatch.
    MisuseLibrary used incorrectly.
    NOLFSUse of OS features not supported by the host.
    NoMemmalloc() failed.
    NotADatabaseThe file opened is not a database file.
    NotFoundTable or record not found.
    OkSuccess.
    PermAccess permission denied.
    ProtocolDatabase lock protocol error.
    Range2nd parameter to sqlite3_bind out of range.
    ReadOnlyAttempt to write a read-only database.
    Rowsqlite3_step() has another row ready.
    SchemaThe database schema changed.
    TooBigToo much data for one row of a table.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             Devart.Data.SQLite.SQLiteErrorCode

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also