Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Change the remaining new classes as 'internal' instead of 'public'. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | sessions |
Files: | files | file ages | folders |
SHA1: |
ff722745b2c307a75ad7ec052687bda9 |
User & Date: | mistachkin 2017-10-06 20:01:45.328 |
Context
2017-10-06
| ||
20:03 | Cleanup regions. check-in: 31aaba7c78 user: mistachkin tags: sessions | |
20:01 | Change the remaining new classes as 'internal' instead of 'public'. check-in: ff722745b2 user: mistachkin tags: sessions | |
19:53 | Add the 'SQLiteChangeGroup' class. Rename the new source file to 'SQLiteSession.cs'. check-in: d7179f7208 user: mistachkin tags: sessions | |
Changes
Changes to System.Data.SQLite/SQLiteSession.cs.
︙ | ︙ | |||
935 936 937 938 939 940 941 | #endregion } #endregion /////////////////////////////////////////////////////////////////////////// #region SQLiteSession Class | | | | | 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 | #endregion } #endregion /////////////////////////////////////////////////////////////////////////// #region SQLiteSession Class internal sealed class SQLiteSession : ISQLiteSession, IDisposable { #region Private Data private SQLiteConnectionHandle handle; private SQLiteConnectionFlags flags; private string databaseName; /////////////////////////////////////////////////////////////////////// private IntPtr session; /////////////////////////////////////////////////////////////////////// private SessionTableFilterCallback tableFilterCallback; private object tableFilterClientData; #endregion /////////////////////////////////////////////////////////////////////// #region Public Constructors public SQLiteSession( SQLiteConnectionHandle handle, SQLiteConnectionFlags flags, string databaseName ) { this.handle = handle; this.flags = flags; |
︙ | ︙ | |||
2306 2307 2308 2309 2310 2311 2312 | #endregion } #endregion /////////////////////////////////////////////////////////////////////////// #region SQLiteChangeSetMetadataItem Class | | | | | 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 | #endregion } #endregion /////////////////////////////////////////////////////////////////////////// #region SQLiteChangeSetMetadataItem Class internal sealed class SQLiteChangeSetMetadataItem : ISQLiteChangeSetMetadataItem, IDisposable { #region Private Data private SQLiteChangeSetIterator iterator; #endregion /////////////////////////////////////////////////////////////////////// #region Public Constructors public SQLiteChangeSetMetadataItem( SQLiteChangeSetIterator iterator ) { this.iterator = iterator; } #endregion |
︙ | ︙ |