Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Remove unused GetNativeModule method. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | virtualTables |
Files: | files | file ages | folders |
SHA1: |
e550e1282e24ce661a6edd1b7c7debcc |
User & Date: | mistachkin 2013-06-21 07:23:57.249 |
Context
2013-06-21
| ||
18:13 | Correct vtable related maximum memory allocation calculation. Also, always use a lock statement for better portability to the .NET Compact Framework. check-in: 33eaa98450 user: mistachkin tags: virtualTables | |
07:23 | Remove unused GetNativeModule method. check-in: e550e1282e user: mistachkin tags: virtualTables | |
07:21 | Rename the SQLiteModuleBase class to SQLiteModule. check-in: f0ccb3cd64 user: mistachkin tags: virtualTables | |
Changes
Changes to System.Data.SQLite/SQLiteModule.cs.
︙ | ︙ | |||
2016 2017 2018 2019 2020 2021 2022 | private Dictionary<IntPtr, SQLiteVirtualTable> tables; private Dictionary<IntPtr, SQLiteVirtualTableCursor> cursors; #endregion /////////////////////////////////////////////////////////////////////// #region Internal Methods | < < < < < < < | 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 | private Dictionary<IntPtr, SQLiteVirtualTable> tables; private Dictionary<IntPtr, SQLiteVirtualTableCursor> cursors; #endregion /////////////////////////////////////////////////////////////////////// #region Internal Methods internal UnsafeNativeMethods.sqlite3_module CreateNativeModule() { return CreateNativeModule(CreateNativeModuleImpl()); } #endregion /////////////////////////////////////////////////////////////////////// |
︙ | ︙ |