System.Data.SQLite

Check-in [3f4f0cf495]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Update list of SQLite core library return codes.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 3f4f0cf4950b6efb86d1a5533c5989f9db6e1e66
User & Date: mistachkin 2016-06-03 17:40:37.976
Context
2016-06-15
18:49
Remove a superfluous variable from a test. check-in: d3092d0d87 user: mistachkin tags: trunk
2016-06-03
17:40
Update list of SQLite core library return codes. check-in: 3f4f0cf495 user: mistachkin tags: trunk
2016-06-02
19:35
Add VerifyOnly method to the SQLiteCommand class. check-in: 36669ce629 user: mistachkin tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to System.Data.SQLite/SQLiteException.cs.
556
557
558
559
560
561
562
563





564
565
    /// <summary>
    /// An automatic index was created to process a query.
    /// </summary>
    Warning_AutoIndex = (Warning | (1 << 8)),
    /// <summary>
    /// User authentication failed.
    /// </summary>
    Auth_User = (Auth | (1 << 8))





  }
}







|
>
>
>
>
>


556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
    /// <summary>
    /// An automatic index was created to process a query.
    /// </summary>
    Warning_AutoIndex = (Warning | (1 << 8)),
    /// <summary>
    /// User authentication failed.
    /// </summary>
    Auth_User = (Auth | (1 << 8)),
    /// <summary>
    /// Success.  Prevents the extension from unloading until the process
    /// terminates.
    /// </summary>
    Ok_Load_Permanently = (Ok | (1 << 8))
  }
}