Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Remove the SharedCache flag from the internal SQLiteOpenFlagsEnum enumeration, because it is no longer used. Also, further cleanup. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
f2d4512fc753e0d75bd0ea9c8887f2bb |
User & Date: | mistachkin 2016-09-28 07:02:02.818 |
Context
2016-10-03
| ||
00:34 | Update Eagle in externals to the beta 38 release. check-in: c684c198ae user: mistachkin tags: trunk | |
2016-09-28
| ||
07:02 | Remove the SharedCache flag from the internal SQLiteOpenFlagsEnum enumeration, because it is no longer used. Also, further cleanup. check-in: f2d4512fc7 user: mistachkin tags: trunk | |
2016-09-20
| ||
22:41 | Fix typo in the version history docs. check-in: b8700ea335 user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite/SQLiteBase.cs.
︙ | ︙ | |||
928 929 930 931 932 933 934 | void BuildTempSchema(SQLiteConnection connection); } [Flags] internal enum SQLiteOpenFlagsEnum { None = 0, | | | | | | | 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 | void BuildTempSchema(SQLiteConnection connection); } [Flags] internal enum SQLiteOpenFlagsEnum { None = 0, ReadOnly = 0x1, ReadWrite = 0x2, Create = 0x4, Uri = 0x40, Memory = 0x80, Default = ReadWrite | Create, } /// <summary> /// The extra behavioral flags that can be applied to a connection. /// </summary> [Flags()] public enum SQLiteConnectionFlags : long |
︙ | ︙ |