System.Data.SQLite

Check-in [694e4bfe9b]
Login

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

Overview
Comment:For ZipVFS, also include the 'algorithms.c' file.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | zipvfs
Files: files | file ages | folders
SHA1: 694e4bfe9bb70042e5643c1a430695aa8d8ee976
User & Date: mistachkin 2015-06-03 02:46:33.362
Context
2015-06-03
16:33
Update embedded documentation and the version history docs. check-in: 984f5d1c0d user: mistachkin tags: zipvfs
02:46
For ZipVFS, also include the 'algorithms.c' file. check-in: 694e4bfe9b user: mistachkin tags: zipvfs
02:16
Support alternate VFSs when opening a database connection. More work on ZipVFS integration. This is an interim check-in and needs testing. check-in: 6bf64f992e user: mistachkin tags: zipvfs
Changes
Unified Diff Ignore Whitespace Patch
Changes to SQLite.Interop/src/win/interop.c.
19
20
21
22
23
24
25

26
27
28
29
30
31
32

#if defined(INTEROP_INCLUDE_SEE)
#include "../ext/see.c"
#endif

#if defined(INTEROP_INCLUDE_ZIPVFS)
#include "../ext/zipvfs.c"

#endif

#if defined(INTEROP_VIRTUAL_TABLE) && SQLITE_VERSION_NUMBER >= 3004001
#include "../ext/vtshim.c"
#endif

#if defined(INTEROP_PERCENTILE_EXTENSION)







>







19
20
21
22
23
24
25
26
27
28
29
30
31
32
33

#if defined(INTEROP_INCLUDE_SEE)
#include "../ext/see.c"
#endif

#if defined(INTEROP_INCLUDE_ZIPVFS)
#include "../ext/zipvfs.c"
#include "../ext/algorithms.c"
#endif

#if defined(INTEROP_VIRTUAL_TABLE) && SQLITE_VERSION_NUMBER >= 3004001
#include "../ext/vtshim.c"
#endif

#if defined(INTEROP_PERCENTILE_EXTENSION)