Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Merge updates from trunk. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | preRelease |
Files: | files | file ages | folders |
SHA1: |
cdeb7b1ecf8f18ccfb77c45abb9faed1 |
User & Date: | mistachkin 2014-02-11 04:14:53.214 |
Context
2014-02-11
| ||
22:02 | Merge updates from trunk. check-in: d06e8d1885 user: mistachkin tags: preRelease | |
04:14 | Merge updates from trunk. check-in: cdeb7b1ecf user: mistachkin tags: preRelease | |
04:11 | Update SQLite core library to the latest 3.8.3.1 RC. check-in: 67d0958bce user: mistachkin tags: trunk | |
2014-02-10
| ||
20:20 | Rebuild the CHM file. check-in: 899f657b63 user: mistachkin tags: preRelease | |
Changes
Changes to Doc/Extra/Provider/version.html.
︙ | ︙ | |||
39 40 41 42 43 44 45 | </td> </tr> </table> </div> <div id="mainSection"> <div id="mainBody"> <h1 class="heading">Version History</h1> | | | | 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | </td> </tr> </table> </div> <div id="mainSection"> <div id="mainBody"> <h1 class="heading">Version History</h1> <p><b>1.0.91.0 - February 12, 2014</b></p> <ul> <li>Updated to <a href="http://www.sqlite.org/releaselog/3_8_3_1.html">SQLite 3.8.3.1</a>.</li> <li>Refresh all included SQLite core library documentation (e.g. SQL syntax).</li> <li>Add support for <a href="http://entityframework.codeplex.com/">Entity Framework 6</a>.</li> <li>Add support for per-connection mappings between type names and DbType values. Pursuant to <a href="http://system.data.sqlite.org/index.html/info/e87af1d06a">[e87af1d06a]</a>.</li> <li>Modify the namespace used for all internal classes in the System.Data.SQLite.Linq assembly. <b>** Potentially Incompatible Change **</b></li> <li>Add SQLiteCompileOptions and InteropCompileOptions properties to the SQLiteConnection class to return the compile-time options for the SQLite core library and interop assembly, respectively.</li> <li>Add BindInvariantText and ConvertInvariantText connection flags to force the invariant culture to be used when converting parameter values to/from strings.</li> <li>Add NoConnectionPool and UseConnectionPool connection flags to disable or enable connection pooling by default.</li> |
︙ | ︙ |
Changes to SQLite.Interop/props/sqlite3.props.
1 2 3 4 5 6 7 8 9 10 11 | <?xml version="1.0" encoding="utf-8"?> <!-- * * sqlite3.props - * * Written by Joe Mistachkin. * Released to the public domain, use at your own risk! * --> <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup Label="UserMacros"> | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | <?xml version="1.0" encoding="utf-8"?> <!-- * * sqlite3.props - * * Written by Joe Mistachkin. * Released to the public domain, use at your own risk! * --> <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup Label="UserMacros"> <SQLITE_MANIFEST_VERSION>3.8.3.1</SQLITE_MANIFEST_VERSION> <SQLITE_RC_VERSION>3,8,3,1</SQLITE_RC_VERSION> <SQLITE_COMMON_DEFINES>_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;SQLITE_THREADSAFE=1;SQLITE_USE_URI=1;SQLITE_ENABLE_COLUMN_METADATA=1;SQLITE_ENABLE_STAT4=1;SQLITE_ENABLE_FTS3=1;SQLITE_ENABLE_LOAD_EXTENSION=1;SQLITE_ENABLE_RTREE=1;SQLITE_SOUNDEX=1;SQLITE_ENABLE_MEMORY_MANAGEMENT=1</SQLITE_COMMON_DEFINES> <SQLITE_EXTRA_DEFINES>SQLITE_HAS_CODEC=1</SQLITE_EXTRA_DEFINES> <SQLITE_WINCE_200X_DEFINES>SQLITE_OMIT_WAL=1</SQLITE_WINCE_200X_DEFINES> <SQLITE_WINCE_2013_DEFINES>HAVE_ERRNO_H=1;SQLITE_MSVC_LOCALTIME_API=1</SQLITE_WINCE_2013_DEFINES> <SQLITE_DEBUG_DEFINES>SQLITE_DEBUG=1;SQLITE_MEMDEBUG=1;SQLITE_ENABLE_EXPENSIVE_ASSERT=1</SQLITE_DEBUG_DEFINES> <SQLITE_RELEASE_DEFINES>SQLITE_WIN32_MALLOC=1</SQLITE_RELEASE_DEFINES> <SQLITE_DISABLE_WARNINGS>4055;4100;4127;4146;4210;4232;4244;4245;4267;4306;4389;4701;4703;4706</SQLITE_DISABLE_WARNINGS> |
︙ | ︙ |
Changes to SQLite.Interop/props/sqlite3.vsprops.
︙ | ︙ | |||
10 11 12 13 14 15 16 | <VisualStudioPropertySheet ProjectType="Visual C++" Version="8.00" Name="sqlite3" > <UserMacro Name="SQLITE_MANIFEST_VERSION" | | | | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | <VisualStudioPropertySheet ProjectType="Visual C++" Version="8.00" Name="sqlite3" > <UserMacro Name="SQLITE_MANIFEST_VERSION" Value="3.8.3.1" PerformEnvironmentSet="true" /> <UserMacro Name="SQLITE_RC_VERSION" Value="3,8,3,1" PerformEnvironmentSet="true" /> <UserMacro Name="SQLITE_COMMON_DEFINES" Value="_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;SQLITE_THREADSAFE=1;SQLITE_USE_URI=1;SQLITE_ENABLE_COLUMN_METADATA=1;SQLITE_ENABLE_STAT4=1;SQLITE_ENABLE_FTS3=1;SQLITE_ENABLE_LOAD_EXTENSION=1;SQLITE_ENABLE_RTREE=1;SQLITE_SOUNDEX=1;SQLITE_ENABLE_MEMORY_MANAGEMENT=1" PerformEnvironmentSet="true" /> |
︙ | ︙ |
Changes to SQLite.Interop/src/core/sqlite3.c.
1 2 | /****************************************************************************** ** This file is an amalgamation of many separate C source files from SQLite | | | 1 2 3 4 5 6 7 8 9 10 | /****************************************************************************** ** This file is an amalgamation of many separate C source files from SQLite ** version 3.8.3.1. By combining all the individual C code files into this ** single large file, the entire code can be compiled as a single translation ** unit. This allows many compilers to do optimizations that would not be ** possible if the files were compiled separately. Performance improvements ** of 5% or more are commonly seen when SQLite is compiled as a single ** translation unit. ** ** This file is all you need to compile SQLite. To use SQLite in other |
︙ | ︙ | |||
131 132 133 134 135 136 137 | ** string contains the date and time of the check-in (UTC) and an SHA1 ** hash of the entire source tree. ** ** See also: [sqlite3_libversion()], ** [sqlite3_libversion_number()], [sqlite3_sourceid()], ** [sqlite_version()] and [sqlite_source_id()]. */ | | | | 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 | ** string contains the date and time of the check-in (UTC) and an SHA1 ** hash of the entire source tree. ** ** See also: [sqlite3_libversion()], ** [sqlite3_libversion_number()], [sqlite3_sourceid()], ** [sqlite_version()] and [sqlite_source_id()]. */ #define SQLITE_VERSION "3.8.3.1" #define SQLITE_VERSION_NUMBER 3008003 #define SQLITE_SOURCE_ID "2014-02-11 03:55:33 3111df71b2a6bef08cf37c6e350f5accc506f9eb" /* ** CAPI3REF: Run-Time Library Version Numbers ** KEYWORDS: sqlite3_version, sqlite3_sourceid ** ** These interfaces provide the same information as the [SQLITE_VERSION], ** [SQLITE_VERSION_NUMBER], and [SQLITE_SOURCE_ID] C preprocessor macros |
︙ | ︙ | |||
41072 41073 41074 41075 41076 41077 41078 | /* ** Find a page in the hash table given its page number. Return ** a pointer to the page or NULL if the requested page is not ** already in memory. */ static PgHdr *pager_lookup(Pager *pPager, Pgno pgno){ | | | 41072 41073 41074 41075 41076 41077 41078 41079 41080 41081 41082 41083 41084 41085 41086 | /* ** Find a page in the hash table given its page number. Return ** a pointer to the page or NULL if the requested page is not ** already in memory. */ static PgHdr *pager_lookup(Pager *pPager, Pgno pgno){ PgHdr *p = 0; /* Return value */ /* It is not possible for a call to PcacheFetch() with createFlag==0 to ** fail, since no attempt to allocate dynamic memory will be made. */ (void)sqlite3PcacheFetch(pPager->pPCache, pgno, 0, &p); return p; } |
︙ | ︙ | |||
112137 112138 112139 112140 112141 112142 112143 | */ if( pWC->nTerm>1 ){ int iTerm; for(iTerm=0; iTerm<pWC->nTerm; iTerm++){ Expr *pExpr = pWC->a[iTerm].pExpr; if( &pWC->a[iTerm] == pTerm ) continue; if( ExprHasProperty(pExpr, EP_FromJoin) ) continue; | > > | | 112137 112138 112139 112140 112141 112142 112143 112144 112145 112146 112147 112148 112149 112150 112151 112152 112153 | */ if( pWC->nTerm>1 ){ int iTerm; for(iTerm=0; iTerm<pWC->nTerm; iTerm++){ Expr *pExpr = pWC->a[iTerm].pExpr; if( &pWC->a[iTerm] == pTerm ) continue; if( ExprHasProperty(pExpr, EP_FromJoin) ) continue; testcase( pWC->a[iTerm].wtFlags & TERM_ORINFO ); testcase( pWC->a[iTerm].wtFlags & TERM_VIRTUAL ); if( pWC->a[iTerm].wtFlags & (TERM_ORINFO|TERM_VIRTUAL) ) continue; if( (pWC->a[iTerm].eOperator & WO_ALL)==0 ) continue; pExpr = sqlite3ExprDup(db, pExpr, 0); pAndExpr = sqlite3ExprAnd(db, pAndExpr, pExpr); } if( pAndExpr ){ pAndExpr = sqlite3PExpr(pParse, TK_AND, 0, pAndExpr, 0); } |
︙ | ︙ |
Changes to SQLite.Interop/src/core/sqlite3.h.
︙ | ︙ | |||
103 104 105 106 107 108 109 | ** string contains the date and time of the check-in (UTC) and an SHA1 ** hash of the entire source tree. ** ** See also: [sqlite3_libversion()], ** [sqlite3_libversion_number()], [sqlite3_sourceid()], ** [sqlite_version()] and [sqlite_source_id()]. */ | | | | 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 | ** string contains the date and time of the check-in (UTC) and an SHA1 ** hash of the entire source tree. ** ** See also: [sqlite3_libversion()], ** [sqlite3_libversion_number()], [sqlite3_sourceid()], ** [sqlite_version()] and [sqlite_source_id()]. */ #define SQLITE_VERSION "3.8.3.1" #define SQLITE_VERSION_NUMBER 3008003 #define SQLITE_SOURCE_ID "2014-02-11 03:55:33 3111df71b2a6bef08cf37c6e350f5accc506f9eb" /* ** CAPI3REF: Run-Time Library Version Numbers ** KEYWORDS: sqlite3_version, sqlite3_sourceid ** ** These interfaces provide the same information as the [SQLITE_VERSION], ** [SQLITE_VERSION_NUMBER], and [SQLITE_SOURCE_ID] C preprocessor macros |
︙ | ︙ |
Changes to SQLite.NET.Settings.targets.
︙ | ︙ | |||
437 438 439 440 441 442 443 444 445 446 447 448 449 450 | <PropertyGroup> <!-- NOTE: Enable tracing of events related to connection handling? By default, this is disabled. --> <TraceConnection Condition="'$(TraceConnection)' == ''">false</TraceConnection> <!-- NOTE: Enable tracing of events related to CriticalHandle handling? By default, this is disabled. --> <TraceHandle Condition="'$(TraceHandle)' == ''">false</TraceHandle> <!-- | > > > > > > > | 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 | <PropertyGroup> <!-- NOTE: Enable tracing of events related to connection handling? By default, this is disabled. --> <TraceConnection Condition="'$(TraceConnection)' == ''">false</TraceConnection> <!-- NOTE: Enable tracing of events related to automatic detection of the native library directory within the native library pre-loading code? By default, this is disabled. --> <TraceDetection Condition="'$(TraceDetection)' == ''">false</TraceDetection> <!-- NOTE: Enable tracing of events related to CriticalHandle handling? By default, this is disabled. --> <TraceHandle Condition="'$(TraceHandle)' == ''">false</TraceHandle> <!-- |
︙ | ︙ |
Changes to Setup/set_user_mistachkin_Debug.bat.
︙ | ︙ | |||
11 12 13 14 15 16 17 18 19 20 | REM REM NOTE: Enables the extra debug code helpful in troubleshooting issues. REM SET MSBUILD_ARGS=/p:CheckState=true SET MSBUILD_ARGS=%MSBUILD_ARGS% /p:CountHandle=true SET MSBUILD_ARGS=%MSBUILD_ARGS% /p:TraceConnection=true SET MSBUILD_ARGS=%MSBUILD_ARGS% /p:TraceHandle=true SET MSBUILD_ARGS=%MSBUILD_ARGS% /p:TraceStatement=true SET MSBUILD_ARGS=%MSBUILD_ARGS% /p:TrackMemoryBytes=true | > | 11 12 13 14 15 16 17 18 19 20 21 | REM REM NOTE: Enables the extra debug code helpful in troubleshooting issues. REM SET MSBUILD_ARGS=/p:CheckState=true SET MSBUILD_ARGS=%MSBUILD_ARGS% /p:CountHandle=true SET MSBUILD_ARGS=%MSBUILD_ARGS% /p:TraceConnection=true SET MSBUILD_ARGS=%MSBUILD_ARGS% /p:TraceDetection=true SET MSBUILD_ARGS=%MSBUILD_ARGS% /p:TraceHandle=true SET MSBUILD_ARGS=%MSBUILD_ARGS% /p:TraceStatement=true SET MSBUILD_ARGS=%MSBUILD_ARGS% /p:TrackMemoryBytes=true |
Changes to System.Data.SQLite/SQLiteDefineConstants.cs.
︙ | ︙ | |||
99 100 101 102 103 104 105 106 107 108 109 110 111 112 | #if TRACE "TRACE", #endif #if TRACE_CONNECTION "TRACE_CONNECTION", #endif #if TRACE_HANDLE "TRACE_HANDLE", #endif #if TRACE_PRELOAD "TRACE_PRELOAD", | > > > > | 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | #if TRACE "TRACE", #endif #if TRACE_CONNECTION "TRACE_CONNECTION", #endif #if TRACE_DETECTION "TRACE_DETECTION", #endif #if TRACE_HANDLE "TRACE_HANDLE", #endif #if TRACE_PRELOAD "TRACE_PRELOAD", |
︙ | ︙ |
Changes to System.Data.SQLite/System.Data.SQLite.Properties.targets.
︙ | ︙ | |||
208 209 210 211 212 213 214 215 216 217 218 219 220 221 | NOTE: Enable various Trace.WriteLine statements included in the code, based on several criteria (see the "SQLite.NET.Settings.targets" file for more information)? --> <PropertyGroup Condition="'$(TraceConnection)' != 'false'"> <DefineConstants>$(DefineConstants);TRACE_CONNECTION</DefineConstants> </PropertyGroup> <PropertyGroup Condition="'$(TraceHandle)' != 'false'"> <DefineConstants>$(DefineConstants);TRACE_HANDLE</DefineConstants> </PropertyGroup> <PropertyGroup Condition="'$(TracePreLoad)' != 'false'"> <DefineConstants>$(DefineConstants);TRACE_PRELOAD</DefineConstants> | > > > > | 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 | NOTE: Enable various Trace.WriteLine statements included in the code, based on several criteria (see the "SQLite.NET.Settings.targets" file for more information)? --> <PropertyGroup Condition="'$(TraceConnection)' != 'false'"> <DefineConstants>$(DefineConstants);TRACE_CONNECTION</DefineConstants> </PropertyGroup> <PropertyGroup Condition="'$(TraceDetection)' != 'false'"> <DefineConstants>$(DefineConstants);TRACE_DETECTION</DefineConstants> </PropertyGroup> <PropertyGroup Condition="'$(TraceHandle)' != 'false'"> <DefineConstants>$(DefineConstants);TRACE_HANDLE</DefineConstants> </PropertyGroup> <PropertyGroup Condition="'$(TracePreLoad)' != 'false'"> <DefineConstants>$(DefineConstants);TRACE_PRELOAD</DefineConstants> |
︙ | ︙ |
Changes to System.Data.SQLite/UnsafeNativeMethods.cs.
1 2 3 4 5 6 7 8 9 10 11 12 | /******************************************************** * ADO.NET 2.0 Data Provider for SQLite Version 3.X * Written by Robert Simpson (robert@blackcastlesoft.com) * * Released to the public domain, use at your own risk! ********************************************************/ namespace System.Data.SQLite { using System; using System.Globalization; | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | /******************************************************** * ADO.NET 2.0 Data Provider for SQLite Version 3.X * Written by Robert Simpson (robert@blackcastlesoft.com) * * Released to the public domain, use at your own risk! ********************************************************/ namespace System.Data.SQLite { using System; using System.Globalization; #if !NET_COMPACT_20 && (TRACE_DETECTION || TRACE_SHARED || TRACE_PRELOAD || TRACE_HANDLE) using System.Diagnostics; #endif #if PRELOAD_NATIVE_LIBRARY using System.Collections.Generic; using System.IO; using System.Reflection; |
︙ | ︙ | |||
422 423 424 425 426 427 428 | localFileName); /* throw */ string xmlConfigFileName = Path.Combine( directory, XmlConfigFileName); if (File.Exists(xmlConfigFileName)) { | | | 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 | localFileName); /* throw */ string xmlConfigFileName = Path.Combine( directory, XmlConfigFileName); if (File.Exists(xmlConfigFileName)) { #if !NET_COMPACT_20 && TRACE_DETECTION try { Trace.WriteLine(String.Format( CultureInfo.CurrentCulture, "Native library pre-loader found XML configuration file " + "via code base for currently executing assembly: \"{0}\"", xmlConfigFileName)); /* throw */ |
︙ | ︙ | |||
445 446 447 448 449 450 451 | return true; } List<string> matches = null; if (CheckForArchitecturesAndPlatforms(directory, ref matches) > 0) { | | | 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 | return true; } List<string> matches = null; if (CheckForArchitecturesAndPlatforms(directory, ref matches) > 0) { #if !NET_COMPACT_20 && TRACE_DETECTION try { Trace.WriteLine(String.Format( CultureInfo.CurrentCulture, "Native library pre-loader found native sub-directories " + "via code base for currently executing assembly: \"{0}\"", ListToString(matches))); /* throw */ |
︙ | ︙ | |||
889 890 891 892 893 894 895 | // wrong value in some circumstances. Please refer to ticket // [9ac9862611] for further information. // if ((IntPtr.Size == sizeof(int)) && String.Equals(processorArchitecture, "AMD64", StringComparison.OrdinalIgnoreCase)) { | | | | 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 | // wrong value in some circumstances. Please refer to ticket // [9ac9862611] for further information. // if ((IntPtr.Size == sizeof(int)) && String.Equals(processorArchitecture, "AMD64", StringComparison.OrdinalIgnoreCase)) { #if !NET_COMPACT_20 && TRACE_DETECTION // // NOTE: When tracing is enabled, save the originally detected // processor architecture before changing it. // string savedProcessorArchitecture = processorArchitecture; #endif // // NOTE: We know that operating systems that return "AMD64" as // the processor architecture are actually a superset of // the "x86" processor architecture; therefore, return // "x86" when the pointer size is 32-bits. // processorArchitecture = "x86"; #if !NET_COMPACT_20 && TRACE_DETECTION try { // // NOTE: Show that we hit a fairly unusual situation (i.e. // the "wrong" processor architecture was detected). // Trace.WriteLine(String.Format( |
︙ | ︙ |
Changes to Tests/common.eagle.
︙ | ︙ | |||
2944 2945 2946 2947 2948 2949 2950 | # foreach defineConstant [list \ CHECK_STATE COUNT_HANDLE DEBUG INTEROP_CODEC INTEROP_DEBUG \ INTEROP_EXTENSION_FUNCTIONS INTEROP_LEGACY_CLOSE INTEROP_LOG \ INTEROP_TEST_EXTENSION INTEROP_VIRTUAL_TABLE NET_20 NET_35 \ NET_40 NET_45 NET_451 NET_COMPACT_20 PLATFORM_COMPACTFRAMEWORK \ PRELOAD_NATIVE_LIBRARY RETARGETABLE SQLITE_STANDARD \ | | | | | | 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 | # foreach defineConstant [list \ CHECK_STATE COUNT_HANDLE DEBUG INTEROP_CODEC INTEROP_DEBUG \ INTEROP_EXTENSION_FUNCTIONS INTEROP_LEGACY_CLOSE INTEROP_LOG \ INTEROP_TEST_EXTENSION INTEROP_VIRTUAL_TABLE NET_20 NET_35 \ NET_40 NET_45 NET_451 NET_COMPACT_20 PLATFORM_COMPACTFRAMEWORK \ PRELOAD_NATIVE_LIBRARY RETARGETABLE SQLITE_STANDARD \ THROW_ON_DISPOSED TRACE TRACE_CONNECTION TRACE_DETECTION \ TRACE_HANDLE TRACE_PRELOAD TRACE_SHARED TRACE_STATEMENT \ TRACE_WARNING TRACK_MEMORY_BYTES USE_ENTITY_FRAMEWORK_6 \ USE_INTEROP_DLL USE_PREPARE_V2 WINDOWS] { # # NOTE: Check if the compile-time option is listed in the list of # "define constants" kept track of by the managed assembly. # checkForSQLiteDefineConstant $::test_channel $defineConstant } |
︙ | ︙ |
Changes to Tests/tkt-56b42d99c1.eagle.
︙ | ︙ | |||
171 172 173 174 175 176 177 | [expr {[info exists errors] ? $errors : ""}] \ [expr {$code eq "Ok" ? [catch { object invoke _Dynamic${id}.Test${id} Main } result] : [set result ""]}] $result } -cleanup { cleanupDb $fileName | | | 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 | [expr {[info exists errors] ? $errors : ""}] \ [expr {$code eq "Ok" ? [catch { object invoke _Dynamic${id}.Test${id} Main } result] : [set result ""]}] $result } -cleanup { cleanupDb $fileName unset -nocomplain result results errors code sql dataSource id db fileName } -constraints {eagle monoBug28 command.sql compile.DATA SQLite\ System.Data.SQLite compileCSharp} -match regexp -result {^Ok\ System#CodeDom#Compiler#CompilerResults#\d+ \{\} 0 0$}} ############################################################################### runTest {test tkt-56b42d99c1-1.3 {enlisted transaction isolation} -setup { |
︙ | ︙ | |||
248 249 250 251 252 253 254 | [expr {[info exists errors] ? $errors : ""}] \ [expr {$code eq "Ok" ? [catch { object invoke _Dynamic${id}.Test${id} Main } result] : [set result ""]}] $result } -cleanup { cleanupDb $fileName | | | 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 | [expr {[info exists errors] ? $errors : ""}] \ [expr {$code eq "Ok" ? [catch { object invoke _Dynamic${id}.Test${id} Main } result] : [set result ""]}] $result } -cleanup { cleanupDb $fileName unset -nocomplain result results errors code sql dataSource id db fileName } -constraints {eagle monoBug28 command.sql compile.DATA SQLite\ System.Data.SQLite compileCSharp} -match regexp -result {^Ok\ System#CodeDom#Compiler#CompilerResults#\d+ \{\} 0 1$}} ############################################################################### runTest {test tkt-56b42d99c1-1.4 {enlisted transaction isolation} -setup { |
︙ | ︙ | |||
325 326 327 328 329 330 331 | [expr {[info exists errors] ? $errors : ""}] \ [expr {$code eq "Ok" ? [catch { object invoke _Dynamic${id}.Test${id} Main } result] : [set result ""]}] $result } -cleanup { cleanupDb $fileName | | | 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 | [expr {[info exists errors] ? $errors : ""}] \ [expr {$code eq "Ok" ? [catch { object invoke _Dynamic${id}.Test${id} Main } result] : [set result ""]}] $result } -cleanup { cleanupDb $fileName unset -nocomplain result results errors code sql dataSource id db fileName } -constraints {eagle monoBug28 command.sql compile.DATA SQLite\ System.Data.SQLite compileCSharp} -match regexp -result {^Ok\ System#CodeDom#Compiler#CompilerResults#\d+ \{\} 0 0$}} ############################################################################### runTest {test tkt-56b42d99c1-1.5 {enlisted transaction isolation} -setup { |
︙ | ︙ | |||
402 403 404 405 406 407 408 | [expr {[info exists errors] ? $errors : ""}] \ [expr {$code eq "Ok" ? [catch { object invoke _Dynamic${id}.Test${id} Main } result] : [set result ""]}] $result } -cleanup { cleanupDb $fileName | | | 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 | [expr {[info exists errors] ? $errors : ""}] \ [expr {$code eq "Ok" ? [catch { object invoke _Dynamic${id}.Test${id} Main } result] : [set result ""]}] $result } -cleanup { cleanupDb $fileName unset -nocomplain result results errors code sql dataSource id db fileName } -constraints {eagle monoBug28 command.sql compile.DATA SQLite\ System.Data.SQLite compileCSharp} -match regexp -result {^Ok\ System#CodeDom#Compiler#CompilerResults#\d+ \{\} 0 1$}} ############################################################################### runSQLiteTestEpilogue runTestEpilogue |
Changes to readme.htm.
1 2 3 4 5 6 7 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title></title> </head> <body> ADO.NET SQLite Data Provider<br /> | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title></title> </head> <body> ADO.NET SQLite Data Provider<br /> Version 1.0.91.0 February 12, 2014<br /> Using <a href="http://www.sqlite.org/releaselog/3_8_3_1.html">SQLite 3.8.3.1</a><br /> Originally written by Robert Simpson<br /> Released to the public domain, use at your own risk!<br /> Official provider website: <a href="http://system.data.sqlite.org/">http://system.data.sqlite.org/</a><br /> Legacy versions: <a href="http://sqlite.phxsoftware.com/">http://sqlite.phxsoftware.com/</a><br /> <br /> The current development version can be downloaded from <a href="http://system.data.sqlite.org/index.html/timeline?y=ci"> http://system.data.sqlite.org/index.html/timeline?y=ci</a> |
︙ | ︙ | |||
205 206 207 208 209 210 211 | designed for robustness and maximum backward compatibility with previously released versions of System.Data.SQLite. </p> <h2><b>Version History</b></h2> <p> | | | | 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 | designed for robustness and maximum backward compatibility with previously released versions of System.Data.SQLite. </p> <h2><b>Version History</b></h2> <p> <b>1.0.91.0 - February 12, 2014</b> </p> <ul> <li>Updated to <a href="http://www.sqlite.org/releaselog/3_8_3_1.html">SQLite 3.8.3.1</a>.</li> <li>Refresh all included SQLite core library documentation (e.g. SQL syntax).</li> <li>Add support for <a href="http://entityframework.codeplex.com/">Entity Framework 6</a>.</li> <li>Add support for per-connection mappings between type names and DbType values. Pursuant to [e87af1d06a].</li> <li>Modify the namespace used for all internal classes in the System.Data.SQLite.Linq assembly. <b>** Potentially Incompatible Change **</b></li> <li>Add SQLiteCompileOptions and InteropCompileOptions properties to the SQLiteConnection class to return the compile-time options for the SQLite core library and interop assembly, respectively.</li> <li>Add BindInvariantText and ConvertInvariantText connection flags to force the invariant culture to be used when converting parameter values to/from strings.</li> <li>Add NoConnectionPool and UseConnectionPool connection flags to disable or enable connection pooling by default.</li> |
︙ | ︙ |
Changes to testlinq/2012/EF6/App.config.
︙ | ︙ | |||
8 9 10 11 12 13 14 | <remove invariant="System.Data.SQLite" /> <add name="SQLite Data Provider" invariant="System.Data.SQLite" description=".Net Framework Data Provider for SQLite" type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite, Version=1.0.91.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139" /> <remove invariant="System.Data.SQLite.EF6" /> <add name="SQLite Data Provider (Entity Framework 6)" invariant="System.Data.SQLite.EF6" description=".Net Framework Data Provider for SQLite (Entity Framework 6)" type="System.Data.SQLite.EF6.SQLiteProviderFactory, System.Data.SQLite.EF6, Version=1.0.91.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139" /> </DbProviderFactories> </system.data> <connectionStrings> | | | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | <remove invariant="System.Data.SQLite" /> <add name="SQLite Data Provider" invariant="System.Data.SQLite" description=".Net Framework Data Provider for SQLite" type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite, Version=1.0.91.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139" /> <remove invariant="System.Data.SQLite.EF6" /> <add name="SQLite Data Provider (Entity Framework 6)" invariant="System.Data.SQLite.EF6" description=".Net Framework Data Provider for SQLite (Entity Framework 6)" type="System.Data.SQLite.EF6.SQLiteProviderFactory, System.Data.SQLite.EF6, Version=1.0.91.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139" /> </DbProviderFactories> </system.data> <connectionStrings> <add name="northwindEFEntities" connectionString="metadata=res://*/NorthwindModel.EF6.2012.csdl|res://*/NorthwindModel.EF6.2012.ssdl|res://*/NorthwindModel.EF6.2012.msl;provider=System.Data.SQLite.EF6;provider connection string="data source=.\northwindEF.db"" providerName="System.Data.EntityClient" /> </connectionStrings> <entityFramework> <providers> <provider invariantName="System.Data.SQLite.EF6" type="System.Data.SQLite.EF6.SQLiteProviderServices, System.Data.SQLite.EF6, Version=1.0.91.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139" /> </providers> </entityFramework> </configuration> |
Changes to testlinq/2013/EF6/App.config.
︙ | ︙ | |||
8 9 10 11 12 13 14 | <remove invariant="System.Data.SQLite" /> <add name="SQLite Data Provider" invariant="System.Data.SQLite" description=".Net Framework Data Provider for SQLite" type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite, Version=1.0.91.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139" /> <remove invariant="System.Data.SQLite.EF6" /> <add name="SQLite Data Provider (Entity Framework 6)" invariant="System.Data.SQLite.EF6" description=".Net Framework Data Provider for SQLite (Entity Framework 6)" type="System.Data.SQLite.EF6.SQLiteProviderFactory, System.Data.SQLite.EF6, Version=1.0.91.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139" /> </DbProviderFactories> </system.data> <connectionStrings> | | | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | <remove invariant="System.Data.SQLite" /> <add name="SQLite Data Provider" invariant="System.Data.SQLite" description=".Net Framework Data Provider for SQLite" type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite, Version=1.0.91.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139" /> <remove invariant="System.Data.SQLite.EF6" /> <add name="SQLite Data Provider (Entity Framework 6)" invariant="System.Data.SQLite.EF6" description=".Net Framework Data Provider for SQLite (Entity Framework 6)" type="System.Data.SQLite.EF6.SQLiteProviderFactory, System.Data.SQLite.EF6, Version=1.0.91.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139" /> </DbProviderFactories> </system.data> <connectionStrings> <add name="northwindEFEntities" connectionString="metadata=res://*/NorthwindModel.EF6.2013.csdl|res://*/NorthwindModel.EF6.2013.ssdl|res://*/NorthwindModel.EF6.2013.msl;provider=System.Data.SQLite.EF6;provider connection string="data source=.\northwindEF.db"" providerName="System.Data.EntityClient" /> </connectionStrings> <entityFramework> <providers> <provider invariantName="System.Data.SQLite.EF6" type="System.Data.SQLite.EF6.SQLiteProviderServices, System.Data.SQLite.EF6, Version=1.0.91.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139" /> </providers> </entityFramework> </configuration> |
Changes to www/downloads.wiki.
︙ | ︙ | |||
436 437 438 439 440 441 442 | <a href="/downloads/1.0.91.0/sqlite-netFx-source-1.0.91.0.zip">sqlite-netFx-source-1.0.91.0.zip</a> <br /> (4.23 MiB) </td> <td width="5"></td> <td valign="top"> This ZIP archive contains all current source code for System.Data.SQLite | | | 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 | <a href="/downloads/1.0.91.0/sqlite-netFx-source-1.0.91.0.zip">sqlite-netFx-source-1.0.91.0.zip</a> <br /> (4.23 MiB) </td> <td width="5"></td> <td valign="top"> This ZIP archive contains all current source code for System.Data.SQLite 1.0.91.0 (3.8.3.1) combined into a single archive file. <br /> (sha1: cd7f313ee1cba8f1543051dcdeaf6e21cdffe406) </td> </tr> <tr> <td colspan="4"> |
︙ | ︙ | |||
460 461 462 463 464 465 466 | <br /> (4.40 MiB) </td> <td width="5"></td> <td valign="top"> This setup package features the mixed-mode assembly and will install all the necessary runtime components and dependencies for the x86 version of | | | 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 | <br /> (4.40 MiB) </td> <td width="5"></td> <td valign="top"> This setup package features the mixed-mode assembly and will install all the necessary runtime components and dependencies for the x86 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2005 SP1 runtime for x86 is included. The .NET Framework 2.0 SP2 is required. <br /> <big><b>This is the only setup package that is capable of installing the design-time components for Visual Studio 2005.</b></big> <br /> (sha1: b70c6a1a37fa2a42906d807118bd269a174d25ef) |
︙ | ︙ | |||
483 484 485 486 487 488 489 | <br /> (4.40 MiB) </td> <td width="5"></td> <td valign="top"> This setup package will install all the necessary runtime components and dependencies for the x86 version of the System.Data.SQLite 1.0.91.0 | | | 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 | <br /> (4.40 MiB) </td> <td width="5"></td> <td valign="top"> This setup package will install all the necessary runtime components and dependencies for the x86 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2005 SP1 runtime for x86 is included. The .NET Framework 2.0 SP2 is required. <br /> (sha1: 2de1fbd92208fb3eda0965fa988e83ed7a1546d9) </td> </tr> <tr> |
︙ | ︙ | |||
508 509 510 511 512 513 514 | <br /> (4.99 MiB) </td> <td width="5"></td> <td valign="top"> This setup package features the mixed-mode assembly and will install all the necessary runtime components and dependencies for the x64 version of | | | | 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 | <br /> (4.99 MiB) </td> <td width="5"></td> <td valign="top"> This setup package features the mixed-mode assembly and will install all the necessary runtime components and dependencies for the x64 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2005 SP1 runtime for x64 is included. The .NET Framework 2.0 SP2 is required. <br /> (sha1: 86df16e4144c6006a389be43967141d6da703ade) </td> </tr> <tr> <td width="10"> </td> <td width="30%" valign="top" align="right"> <a name="sqlite-netFx20-setup-x64-2005"></a> <a href="/downloads/1.0.91.0/sqlite-netFx20-setup-x64-2005-1.0.91.0.exe">sqlite-netFx20-setup-x64-2005-1.0.91.0.exe</a> <br /> (4.98 MiB) </td> <td width="5"></td> <td valign="top"> This setup package will install all the necessary runtime components and dependencies for the x64 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2005 SP1 runtime for x64 is included. The .NET Framework 2.0 SP2 is required. <br /> (sha1: 9fa9b4bc299db62cd893320eb473532caf11fb06) </td> </tr> <tr> |
︙ | ︙ | |||
553 554 555 556 557 558 559 | <br /> (6.44 MiB) </td> <td width="5"></td> <td valign="top"> This setup package features the mixed-mode assembly and will install all the necessary runtime components and dependencies for the x86 version of | | | 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 | <br /> (6.44 MiB) </td> <td width="5"></td> <td valign="top"> This setup package features the mixed-mode assembly and will install all the necessary runtime components and dependencies for the x86 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2008 SP1 runtime for x86 is included. The .NET Framework 3.5 SP1 is required. <br /> <big><b>This is the only setup package that is capable of installing the design-time components for Visual Studio 2008.</b></big> <br /> (sha1: 2dbd6d907b42f445628662f136aba40ccd25be44) |
︙ | ︙ | |||
576 577 578 579 580 581 582 | <br /> (6.43 MiB) </td> <td width="5"></td> <td valign="top"> This setup package will install all the necessary runtime components and dependencies for the x86 version of the System.Data.SQLite 1.0.91.0 | | | 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 | <br /> (6.43 MiB) </td> <td width="5"></td> <td valign="top"> This setup package will install all the necessary runtime components and dependencies for the x86 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2008 SP1 runtime for x86 is included. The .NET Framework 3.5 SP1 is required. <br /> (sha1: 4b9686a0d877122967caebc23ef7fdd038950e06) </td> </tr> <tr> |
︙ | ︙ | |||
601 602 603 604 605 606 607 | <br /> (7.17 MiB) </td> <td width="5"></td> <td valign="top"> This setup package features the mixed-mode assembly and will install all the necessary runtime components and dependencies for the x64 version of | | | | 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 | <br /> (7.17 MiB) </td> <td width="5"></td> <td valign="top"> This setup package features the mixed-mode assembly and will install all the necessary runtime components and dependencies for the x64 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2008 SP1 runtime for x64 is included. The .NET Framework 3.5 SP1 is required. <br /> (sha1: d821a86303d4a6f74142020f0c16f93b57be304a) </td> </tr> <tr> <td width="10"> </td> <td width="30%" valign="top" align="right"> <a name="sqlite-netFx35-setup-x64-2008"></a> <a href="/downloads/1.0.91.0/sqlite-netFx35-setup-x64-2008-1.0.91.0.exe">sqlite-netFx35-setup-x64-2008-1.0.91.0.exe</a> <br /> (7.16 MiB) </td> <td width="5"></td> <td valign="top"> This setup package will install all the necessary runtime components and dependencies for the x64 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2008 SP1 runtime for x64 is included. The .NET Framework 3.5 SP1 is required. <br /> (sha1: e118f9aefcae4e381bad3e8104c7395dc5365fd0) </td> </tr> <tr> |
︙ | ︙ | |||
646 647 648 649 650 651 652 | <br /> (11.96 MiB) </td> <td width="5"></td> <td valign="top"> This setup package features the mixed-mode assembly and will install all the necessary runtime components and dependencies for the x86 version of | | | 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 | <br /> (11.96 MiB) </td> <td width="5"></td> <td valign="top"> This setup package features the mixed-mode assembly and will install all the necessary runtime components and dependencies for the x86 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2010 SP1 runtime for x86 is included. The .NET Framework 4.0 is required. <br /> <big><b>This is the only setup package that is capable of installing the design-time components for Visual Studio 2010.</b></big> <br /> (sha1: 3182f97cdf4cb0fe1adadbb0b3b2ca64a50355a6) </td> |
︙ | ︙ | |||
668 669 670 671 672 673 674 | <br /> (11.95 MiB) </td> <td width="5"></td> <td valign="top"> This setup package will install all the necessary runtime components and dependencies for the x86 version of the System.Data.SQLite 1.0.91.0 | | | 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 | <br /> (11.95 MiB) </td> <td width="5"></td> <td valign="top"> This setup package will install all the necessary runtime components and dependencies for the x86 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2010 SP1 runtime for x86 is included. The .NET Framework 4.0 is required. <br /> (sha1: 33991a4fd4e078650a8215979153b92076dc870e) </td> </tr> <tr> |
︙ | ︙ | |||
693 694 695 696 697 698 699 | <br /> (13.21 MiB) </td> <td width="5"></td> <td valign="top"> This setup package features the mixed-mode assembly and will install all the necessary runtime components and dependencies for the x64 version of | | | | 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 | <br /> (13.21 MiB) </td> <td width="5"></td> <td valign="top"> This setup package features the mixed-mode assembly and will install all the necessary runtime components and dependencies for the x64 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2010 SP1 runtime for x64 is included. The .NET Framework 4.0 is required. <br /> (sha1: 92ae62e77bf9dcbf211e15a5d958cd10416b2b6c) </td> </tr> <tr> <td width="10"> </td> <td width="30%" valign="top" align="right"> <a name="sqlite-netFx40-setup-x64-2010"></a> <a href="/downloads/1.0.91.0/sqlite-netFx40-setup-x64-2010-1.0.91.0.exe">sqlite-netFx40-setup-x64-2010-1.0.91.0.exe</a> <br /> (13.20 MiB) </td> <td width="5"></td> <td valign="top"> This setup package will install all the necessary runtime components and dependencies for the x64 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2010 SP1 runtime for x64 is included. The .NET Framework 4.0 is required. <br /> (sha1: 4f65a2ea9ce3fd230ede85f65b3d47d9d81694ef) </td> </tr> <tr> |
︙ | ︙ | |||
737 738 739 740 741 742 743 | <br /> (9.39 MiB) </td> <td width="5"></td> <td valign="top"> This setup package features the mixed-mode assembly and will install all the necessary runtime components and dependencies for the x86 version of | | | 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 | <br /> (9.39 MiB) </td> <td width="5"></td> <td valign="top"> This setup package features the mixed-mode assembly and will install all the necessary runtime components and dependencies for the x86 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2012 Update 3 runtime for x86 is included. The .NET Framework 4.5 is required. <br /> <big><b>This is the only setup package that is capable of installing the design-time components for Visual Studio 2012.</b></big> <br /> (sha1: a57eb0915a451264f45ee46ddee38008820994ea) |
︙ | ︙ | |||
760 761 762 763 764 765 766 | <br /> (9.42 MiB) </td> <td width="5"></td> <td valign="top"> This setup package will install all the necessary runtime components and dependencies for the x86 version of the System.Data.SQLite 1.0.91.0 | | | 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 | <br /> (9.42 MiB) </td> <td width="5"></td> <td valign="top"> This setup package will install all the necessary runtime components and dependencies for the x86 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2012 Update 3 runtime for x86 is included. The .NET Framework 4.5 is required. <br /> (sha1: 681a125c9ceecee65d4160dce46c2e26b30b22d8) </td> </tr> <tr> |
︙ | ︙ | |||
785 786 787 788 789 790 791 | <br /> (10.04 MiB) </td> <td width="5"></td> <td valign="top"> This setup package features the mixed-mode assembly and will install all the necessary runtime components and dependencies for the x64 version of | | | | 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 | <br /> (10.04 MiB) </td> <td width="5"></td> <td valign="top"> This setup package features the mixed-mode assembly and will install all the necessary runtime components and dependencies for the x64 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2012 Update 3 runtime for x64 is included. The .NET Framework 4.5 is required. <br /> (sha1: 23034fd74c2e7709d23527e8b96915f6d7803103) </td> </tr> <tr> <td width="10"> </td> <td width="30%" valign="top" align="right"> <a name="sqlite-netFx45-setup-x64-2012"></a> <a href="/downloads/1.0.91.0/sqlite-netFx45-setup-x64-2012-1.0.91.0.exe">sqlite-netFx45-setup-x64-2012-1.0.91.0.exe</a> <br /> (10.09 MiB) </td> <td width="5"></td> <td valign="top"> This setup package will install all the necessary runtime components and dependencies for the x64 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2012 Update 3 runtime for x64 is included. The .NET Framework 4.5 is required. <br /> (sha1: ba6e936d6700cac342685bf92d2a5f817ab1ca0d) </td> </tr> <tr> |
︙ | ︙ | |||
830 831 832 833 834 835 836 | <br /> (9.34 MiB) </td> <td width="5"></td> <td valign="top"> This setup package features the mixed-mode assembly and will install all the necessary runtime components and dependencies for the x86 version of | | | 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 | <br /> (9.34 MiB) </td> <td width="5"></td> <td valign="top"> This setup package features the mixed-mode assembly and will install all the necessary runtime components and dependencies for the x86 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2013 RTM runtime for x86 is included. The .NET Framework 4.5.1 is required. <br /> <big><b>This is the only setup package that is capable of installing the design-time components for Visual Studio 2013.</b></big> <br /> (sha1: f5fc10bceb25aed8b30e833d364fd80d9313de33) |
︙ | ︙ | |||
853 854 855 856 857 858 859 | <br /> (9.37 MiB) </td> <td width="5"></td> <td valign="top"> This setup package will install all the necessary runtime components and dependencies for the x86 version of the System.Data.SQLite 1.0.91.0 | | | 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 | <br /> (9.37 MiB) </td> <td width="5"></td> <td valign="top"> This setup package will install all the necessary runtime components and dependencies for the x86 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2013 RTM runtime for x86 is included. The .NET Framework 4.5.1 is required. <br /> (sha1: 5715f92c3bdb741d91f02dfea3970ef3e2bf0507) </td> </tr> <tr> |
︙ | ︙ | |||
878 879 880 881 882 883 884 | <br /> (10.03 MiB) </td> <td width="5"></td> <td valign="top"> This setup package features the mixed-mode assembly and will install all the necessary runtime components and dependencies for the x64 version of | | | | 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 | <br /> (10.03 MiB) </td> <td width="5"></td> <td valign="top"> This setup package features the mixed-mode assembly and will install all the necessary runtime components and dependencies for the x64 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2013 RTM runtime for x64 is included. The .NET Framework 4.5.1 is required. <br /> (sha1: 163ec502f8740cd99b0bcc12608b8c540ad764ea) </td> </tr> <tr> <td width="10"> </td> <td width="30%" valign="top" align="right"> <a name="sqlite-netFx451-setup-x64-2013"></a> <a href="/downloads/1.0.91.0/sqlite-netFx451-setup-x64-2013-1.0.91.0.exe">sqlite-netFx451-setup-x64-2013-1.0.91.0.exe</a> <br /> (10.07 MiB) </td> <td width="5"></td> <td valign="top"> This setup package will install all the necessary runtime components and dependencies for the x64 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2013 RTM runtime for x64 is included. The .NET Framework 4.5.1 is required. <br /> (sha1: 70590c32721edb296eec5cf6d7a2c0dec760da25) </td> </tr> <tr> |
︙ | ︙ | |||
923 924 925 926 927 928 929 | <br /> (1.41 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x86 version of the System.Data.SQLite 1.0.91.0 | | | | 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 | <br /> (1.41 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x86 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2005 SP1 runtime for x86 and the .NET Framework 2.0 SP2 are required. <br /> (sha1: 43e888aa1a7a407c288d91145cbd62b6d0b7ec03) </td> </tr> <tr> <td width="10"> </td> <td width="30%" valign="top" align="right"> <a name="sqlite-netFx20-binary-Win32-2005"></a> <a href="/downloads/1.0.91.0/sqlite-netFx20-binary-Win32-2005-1.0.91.0.zip">sqlite-netFx20-binary-Win32-2005-1.0.91.0.zip</a> <br /> (1.41 MiB) </td> <td width="5"></td> <td valign="top"> This binary package contains all the binaries for the x86 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2005 SP1 runtime for x86 and the .NET Framework 2.0 SP2 are required. <br /> (sha1: 43ff4c7f67f79293a0d3dca040d35123074dd7eb) </td> </tr> <tr> |
︙ | ︙ | |||
966 967 968 969 970 971 972 | <br /> (1.62 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x64 version of the System.Data.SQLite 1.0.91.0 | | | | 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 | <br /> (1.62 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x64 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2005 SP1 runtime for x64 and the .NET Framework 2.0 SP2 are required. <br /> (sha1: b302d0e529fe2cb70c615b5256bf9747453568e2) </td> </tr> <tr> <td width="10"> </td> <td width="30%" valign="top" align="right"> <a name="sqlite-netFx20-binary-x64-2005"></a> <a href="/downloads/1.0.91.0/sqlite-netFx20-binary-x64-2005-1.0.91.0.zip">sqlite-netFx20-binary-x64-2005-1.0.91.0.zip</a> <br /> (1.61 MiB) </td> <td width="5"></td> <td valign="top"> This binary package contains all the binaries for the x64 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2005 SP1 runtime for x64 and the .NET Framework 2.0 SP2 are required. <br /> (sha1: 6d9eeb140a046811b4309b37a5917ff1708a422c) </td> </tr> <tr> |
︙ | ︙ | |||
1009 1010 1011 1012 1013 1014 1015 | <br /> (1.86 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x86 version of the System.Data.SQLite 1.0.91.0 | | | | 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 | <br /> (1.86 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x86 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2008 SP1 runtime for x86 and the .NET Framework 3.5 SP1 are required. <br /> (sha1: b02a77007d36689b443ad9e0e77e0608495f46bd) </td> </tr> <tr> <td width="10"> </td> <td width="30%" valign="top" align="right"> <a name="sqlite-netFx35-binary-Win32-2008"></a> <a href="/downloads/1.0.91.0/sqlite-netFx35-binary-Win32-2008-1.0.91.0.zip">sqlite-netFx35-binary-Win32-2008-1.0.91.0.zip</a> <br /> (1.85 MiB) </td> <td width="5"></td> <td valign="top"> This binary package contains all the binaries for the x86 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2008 SP1 runtime for x86 and the .NET Framework 3.5 SP1 are required. <br /> (sha1: 476651e279870e0a7d33d65d76177ea3fa66ea30) </td> </tr> <tr> |
︙ | ︙ | |||
1052 1053 1054 1055 1056 1057 1058 | <br /> (1.93 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x64 version of the System.Data.SQLite 1.0.91.0 | | | | 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 | <br /> (1.93 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x64 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2008 SP1 runtime for x64 and the .NET Framework 3.5 SP1 are required. <br /> (sha1: f907ceb048c7b2194c3a2798ca79c90f38b34562) </td> </tr> <tr> <td width="10"> </td> <td width="30%" valign="top" align="right"> <a name="sqlite-netFx35-binary-x64-2008"></a> <a href="/downloads/1.0.91.0/sqlite-netFx35-binary-x64-2008-1.0.91.0.zip">sqlite-netFx35-binary-x64-2008-1.0.91.0.zip</a> <br /> (1.92 MiB) </td> <td width="5"></td> <td valign="top"> This binary package contains all the binaries for the x64 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2008 SP1 runtime for x64 and the .NET Framework 3.5 SP1 are required. <br /> (sha1: 6316f39308cdb4bb81731c7dec7cfa1592db4bbc) </td> </tr> <tr> |
︙ | ︙ | |||
1095 1096 1097 1098 1099 1100 1101 | <br /> (2.07 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x86 version of the System.Data.SQLite 1.0.91.0 | | | | 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 | <br /> (2.07 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x86 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2010 SP1 runtime for x86 and the .NET Framework 4.0 are required. <br /> (sha1: 4b8aaa69cbfa1ba777593d2c7f6d6a4f6f3802a3) </td> </tr> <tr> <td width="10"> </td> <td width="30%" valign="top" align="right"> <a name="sqlite-netFx40-binary-Win32-2010"></a> <a href="/downloads/1.0.91.0/sqlite-netFx40-binary-Win32-2010-1.0.91.0.zip">sqlite-netFx40-binary-Win32-2010-1.0.91.0.zip</a> <br /> (2.06 MiB) </td> <td width="5"></td> <td valign="top"> This binary package contains all the binaries for the x86 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2010 SP1 runtime for x86 and the .NET Framework 4.0 are required. <br /> (sha1: cbfcc5c7d40711e5c580ad632374e20d7dc62987) </td> </tr> <tr> |
︙ | ︙ | |||
1138 1139 1140 1141 1142 1143 1144 | <br /> (2.09 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x64 version of the System.Data.SQLite 1.0.91.0 | | | | 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 | <br /> (2.09 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x64 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2010 SP1 runtime for x64 and the .NET Framework 4.0 are required. <br /> (sha1: eb1e9e3fbfcc5b61570e20b834afb666d037ee8a) </td> </tr> <tr> <td width="10"> </td> <td width="30%" valign="top" align="right"> <a name="sqlite-netFx40-binary-x64-2010"></a> <a href="/downloads/1.0.91.0/sqlite-netFx40-binary-x64-2010-1.0.91.0.zip">sqlite-netFx40-binary-x64-2010-1.0.91.0.zip</a> <br /> (2.08 MiB) </td> <td width="5"></td> <td valign="top"> This binary package contains all the binaries for the x64 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2010 SP1 runtime for x64 and the .NET Framework 4.0 are required. <br /> (sha1: bfd1c3f3b3f1a05847891f48456066db58b3b52c) </td> </tr> <tr> |
︙ | ︙ | |||
1181 1182 1183 1184 1185 1186 1187 | <br /> (1.99 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x86 version of the System.Data.SQLite 1.0.91.0 | | | | 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 | <br /> (1.99 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x86 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2012 Update 3 runtime for x86 and the .NET Framework 4.5 are required. <br /> (sha1: a3b00af35358707d7cb20c33ae4f20b0151da91c) </td> </tr> <tr> <td width="10"> </td> <td width="30%" valign="top" align="right"> <a name="sqlite-netFx45-binary-Win32-2012"></a> <a href="/downloads/1.0.91.0/sqlite-netFx45-binary-Win32-2012-1.0.91.0.zip">sqlite-netFx45-binary-Win32-2012-1.0.91.0.zip</a> <br /> (2.04 MiB) </td> <td width="5"></td> <td valign="top"> This binary package contains all the binaries for the x86 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2012 Update 3 runtime for x86 and the .NET Framework 4.5 are required. <br /> (sha1: 2fd8be2a904419bf85dbc551f7d4922287af4051) </td> </tr> <tr> |
︙ | ︙ | |||
1224 1225 1226 1227 1228 1229 1230 | <br /> (2.02 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x64 version of the System.Data.SQLite 1.0.91.0 | | | | 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 | <br /> (2.02 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x64 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2012 Update 3 runtime for x64 and the .NET Framework 4.5 are required. <br /> (sha1: f4e7a8dee43803dc44230f702ce8b581cab559d6) </td> </tr> <tr> <td width="10"> </td> <td width="30%" valign="top" align="right"> <a name="sqlite-netFx45-binary-x64-2012"></a> <a href="/downloads/1.0.91.0/sqlite-netFx45-binary-x64-2012-1.0.91.0.zip">sqlite-netFx45-binary-x64-2012-1.0.91.0.zip</a> <br /> (2.09 MiB) </td> <td width="5"></td> <td valign="top"> This binary package contains all the binaries for the x64 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2012 Update 3 runtime for x64 and the .NET Framework 4.5 are required. <br /> (sha1: 427b9448e80c61e8fe6753d82cada65cdd16fbe9) </td> </tr> <tr> |
︙ | ︙ | |||
1267 1268 1269 1270 1271 1272 1273 | <br /> (1.99 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x86 version of the System.Data.SQLite 1.0.91.0 | | | | 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 | <br /> (1.99 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x86 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2013 RTM runtime for x86 and the .NET Framework 4.5.1 are required. <br /> (sha1: 142ae2793c1503f4683793a1d558bc46d78d5ae9) </td> </tr> <tr> <td width="10"> </td> <td width="30%" valign="top" align="right"> <a name="sqlite-netFx451-binary-Win32-2013"></a> <a href="/downloads/1.0.91.0/sqlite-netFx451-binary-Win32-2013-1.0.91.0.zip">sqlite-netFx451-binary-Win32-2013-1.0.91.0.zip</a> <br /> (2.04 MiB) </td> <td width="5"></td> <td valign="top"> This binary package contains all the binaries for the x86 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2013 RTM runtime for x86 and the .NET Framework 4.5.1 are required. <br /> (sha1: a8a26448116d6d81f5fd5aea61c8027dd1558a50) </td> </tr> <tr> |
︙ | ︙ | |||
1310 1311 1312 1313 1314 1315 1316 | <br /> (2.02 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x64 version of the System.Data.SQLite 1.0.91.0 | | | | 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 | <br /> (2.02 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x64 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2013 RTM runtime for x64 and the .NET Framework 4.5.1 are required. <br /> (sha1: 21fc0d298f1a7d1089ca97adcf0f22d61c2c464b) </td> </tr> <tr> <td width="10"> </td> <td width="30%" valign="top" align="right"> <a name="sqlite-netFx451-binary-x64-2013"></a> <a href="/downloads/1.0.91.0/sqlite-netFx451-binary-x64-2013-1.0.91.0.zip">sqlite-netFx451-binary-x64-2013-1.0.91.0.zip</a> <br /> (2.08 MiB) </td> <td width="5"></td> <td valign="top"> This binary package contains all the binaries for the x64 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2013 RTM runtime for x64 and the .NET Framework 4.5.1 are required. <br /> (sha1: 7024d888bf2e53d5268fdc287ee15221b1d9760b) </td> </tr> <tr> |
︙ | ︙ | |||
1353 1354 1355 1356 1357 1358 1359 | <br /> (1.62 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x86 version of the System.Data.SQLite 1.0.91.0 | | | | 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 | <br /> (1.62 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x86 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2005 SP1 runtime for x86 is statically linked. The .NET Framework 2.0 SP2 is required. <br /> (sha1: 0c2cc2f2724db41e4663fec4ea96ccd3482dfe52) </td> </tr> <tr> <td width="10"> </td> <td width="30%" valign="top" align="right"> <a name="sqlite-netFx20-static-binary-Win32-2005"></a> <a href="/downloads/1.0.91.0/sqlite-netFx20-static-binary-Win32-2005-1.0.91.0.zip">sqlite-netFx20-static-binary-Win32-2005-1.0.91.0.zip</a> <br /> (1.62 MiB) </td> <td width="5"></td> <td valign="top"> This binary package contains all the binaries for the x86 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2005 SP1 runtime for x86 is statically linked. The .NET Framework 2.0 SP2 is required. <br /> (sha1: 9a07ca2e5af276ac70e1f3a706bcda0bf50ea77b) </td> </tr> |
︙ | ︙ | |||
1397 1398 1399 1400 1401 1402 1403 | <br /> (1.77 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x64 version of the System.Data.SQLite 1.0.91.0 | | | | 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 | <br /> (1.77 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x64 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2005 SP1 runtime for x64 is statically linked. The .NET Framework 2.0 SP2 is required. <br /> (sha1: 0f46c56637240c1c3b62bfefdc39a136a826c46d) </td> </tr> <tr> <td width="10"> </td> <td width="30%" valign="top" align="right"> <a name="sqlite-netFx20-static-binary-x64-2005"></a> <a href="/downloads/1.0.91.0/sqlite-netFx20-static-binary-x64-2005-1.0.91.0.zip">sqlite-netFx20-static-binary-x64-2005-1.0.91.0.zip</a> <br /> (1.77 MiB) </td> <td width="5"></td> <td valign="top"> This binary package contains all the binaries for the x64 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2005 SP1 runtime for x64 is statically linked. The .NET Framework 2.0 SP2 is required. <br /> (sha1: 2d0f7cdd64feeb727b808636a6e92c6b36ff5a55) </td> </tr> |
︙ | ︙ | |||
1441 1442 1443 1444 1445 1446 1447 | <br /> (2.07 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x86 version of the System.Data.SQLite 1.0.91.0 | | | | 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 | <br /> (2.07 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x86 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2008 SP1 runtime for x86 is statically linked. The .NET Framework 3.5 SP1 is required. <br /> (sha1: b12f362388df37db263aa77d65a4ccb516fb0356) </td> </tr> <tr> <td width="10"> </td> <td width="30%" valign="top" align="right"> <a name="sqlite-netFx35-static-binary-Win32-2008"></a> <a href="/downloads/1.0.91.0/sqlite-netFx35-static-binary-Win32-2008-1.0.91.0.zip">sqlite-netFx35-static-binary-Win32-2008-1.0.91.0.zip</a> <br /> (2.07 MiB) </td> <td width="5"></td> <td valign="top"> This binary package contains all the binaries for the x86 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2008 SP1 runtime for x86 is statically linked. The .NET Framework 3.5 SP1 is required. <br /> (sha1: 2a8468b57d1916e4228112085bc68f7cc25e4f73) </td> </tr> |
︙ | ︙ | |||
1485 1486 1487 1488 1489 1490 1491 | <br /> (2.10 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x64 version of the System.Data.SQLite 1.0.91.0 | | | | 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 | <br /> (2.10 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x64 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2008 SP1 runtime for x64 is statically linked. The .NET Framework 3.5 SP1 is required. <br /> (sha1: 6f6507e565bf23d282dd4ca43bd533509c72dd2a) </td> </tr> <tr> <td width="10"> </td> <td width="30%" valign="top" align="right"> <a name="sqlite-netFx35-static-binary-x64-2008"></a> <a href="/downloads/1.0.91.0/sqlite-netFx35-static-binary-x64-2008-1.0.91.0.zip">sqlite-netFx35-static-binary-x64-2008-1.0.91.0.zip</a> <br /> (2.10 MiB) </td> <td width="5"></td> <td valign="top"> This binary package contains all the binaries for the x64 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2008 SP1 runtime for x64 is statically linked. The .NET Framework 3.5 SP1 is required. <br /> (sha1: ae8a4dc7517e5584fc882dc925da75408ae092b6) </td> </tr> |
︙ | ︙ | |||
1529 1530 1531 1532 1533 1534 1535 | <br /> (2.28 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x86 version of the System.Data.SQLite 1.0.91.0 | | | | 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 | <br /> (2.28 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x86 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2010 SP1 runtime for x86 is statically linked. The .NET Framework 4.0 is required. <br /> (sha1: d656194332c2860564819d6616fdd86885bcd052) </td> </tr> <tr> <td width="10"> </td> <td width="30%" valign="top" align="right"> <a name="sqlite-netFx40-static-binary-Win32-2010"></a> <a href="/downloads/1.0.91.0/sqlite-netFx40-static-binary-Win32-2010-1.0.91.0.zip">sqlite-netFx40-static-binary-Win32-2010-1.0.91.0.zip</a> <br /> (2.28 MiB) </td> <td width="5"></td> <td valign="top"> This binary package contains all the binaries for the x86 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2010 SP1 runtime for x86 is statically linked. The .NET Framework 4.0 is required. <br /> (sha1: f5a9c9bfb2c10d324175506c0cd8a769a48a8ddf) </td> </tr> |
︙ | ︙ | |||
1573 1574 1575 1576 1577 1578 1579 | <br /> (2.28 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x64 version of the System.Data.SQLite 1.0.91.0 | | | | 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 | <br /> (2.28 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x64 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2010 SP1 runtime for x64 is statically linked. The .NET Framework 4.0 is required. <br /> (sha1: e6b9d519dd9c5c22ee6c9f93b392e7512fa00840) </td> </tr> <tr> <td width="10"> </td> <td width="30%" valign="top" align="right"> <a name="sqlite-netFx40-static-binary-x64-2010"></a> <a href="/downloads/1.0.91.0/sqlite-netFx40-static-binary-x64-2010-1.0.91.0.zip">sqlite-netFx40-static-binary-x64-2010-1.0.91.0.zip</a> <br /> (2.28 MiB) </td> <td width="5"></td> <td valign="top"> This binary package contains all the binaries for the x64 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2010 SP1 runtime for x64 is statically linked. The .NET Framework 4.0 is required. <br /> (sha1: ca28c45ceb9292a5cf797ae82f06f66955686ce8) </td> </tr> |
︙ | ︙ | |||
1617 1618 1619 1620 1621 1622 1623 | <br /> (2.31 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x86 version of the System.Data.SQLite 1.0.91.0 | | | | 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 | <br /> (2.31 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x86 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2012 Update 3 runtime for x86 is statically linked. The .NET Framework 4.5 is required. <br /> (sha1: 83f1361db5b5e04d5574972422ef5909bdc639cc) </td> </tr> <tr> <td width="10"> </td> <td width="30%" valign="top" align="right"> <a name="sqlite-netFx45-static-binary-Win32-2012"></a> <a href="/downloads/1.0.91.0/sqlite-netFx45-static-binary-Win32-2012-1.0.91.0.zip">sqlite-netFx45-static-binary-Win32-2012-1.0.91.0.zip</a> <br /> (2.37 MiB) </td> <td width="5"></td> <td valign="top"> This binary package contains all the binaries for the x86 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2012 Update 3 runtime for x86 is statically linked. The .NET Framework 4.5 is required. <br /> (sha1: dad2a16fc1c813361be957210a42b331e881077c) </td> </tr> |
︙ | ︙ | |||
1661 1662 1663 1664 1665 1666 1667 | <br /> (2.28 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x64 version of the System.Data.SQLite 1.0.91.0 | | | | 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 | <br /> (2.28 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x64 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2012 Update 3 runtime for x64 is statically linked. The .NET Framework 4.5 is required. <br /> (sha1: 44fb82d33fcd0af358b6a8aeb017864042da7e97) </td> </tr> <tr> <td width="10"> </td> <td width="30%" valign="top" align="right"> <a name="sqlite-netFx45-static-binary-x64-2012"></a> <a href="/downloads/1.0.91.0/sqlite-netFx45-static-binary-x64-2012-1.0.91.0.zip">sqlite-netFx45-static-binary-x64-2012-1.0.91.0.zip</a> <br /> (2.34 MiB) </td> <td width="5"></td> <td valign="top"> This binary package contains all the binaries for the x64 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2012 Update 3 runtime for x64 is statically linked. The .NET Framework 4.5 is required. <br /> (sha1: 17c52bf1d279bd667db9516fb5a6de1c7035e854) </td> </tr> |
︙ | ︙ | |||
1705 1706 1707 1708 1709 1710 1711 | <br /> (2.33 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x86 version of the System.Data.SQLite 1.0.91.0 | | | | 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 | <br /> (2.33 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x86 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2013 RTM runtime for x86 is statically linked. The .NET Framework 4.5.1 is required. <br /> (sha1: 61991439c98fe663ef27f16795b0ced120020a39) </td> </tr> <tr> <td width="10"> </td> <td width="30%" valign="top" align="right"> <a name="sqlite-netFx451-static-binary-Win32-2013"></a> <a href="/downloads/1.0.91.0/sqlite-netFx451-static-binary-Win32-2013-1.0.91.0.zip">sqlite-netFx451-static-binary-Win32-2013-1.0.91.0.zip</a> <br /> (2.38 MiB) </td> <td width="5"></td> <td valign="top"> This binary package contains all the binaries for the x86 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2013 RTM runtime for x86 is statically linked. The .NET Framework 4.5.1 is required. <br /> (sha1: 8742e31d50047e7f3ac81f08887364c003b0d043) </td> </tr> |
︙ | ︙ | |||
1749 1750 1751 1752 1753 1754 1755 | <br /> (2.31 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x64 version of the System.Data.SQLite 1.0.91.0 | | | | 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 | <br /> (2.31 MiB) </td> <td width="5"></td> <td valign="top"> This binary package features the mixed-mode assembly and contains all the binaries for the x64 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2013 RTM runtime for x64 is statically linked. The .NET Framework 4.5.1 is required. <br /> (sha1: 48134567e83bf7fbdf306680639d101f75c44624) </td> </tr> <tr> <td width="10"> </td> <td width="30%" valign="top" align="right"> <a name="sqlite-netFx451-static-binary-x64-2013"></a> <a href="/downloads/1.0.91.0/sqlite-netFx451-static-binary-x64-2013-1.0.91.0.zip">sqlite-netFx451-static-binary-x64-2013-1.0.91.0.zip</a> <br /> (2.37 MiB) </td> <td width="5"></td> <td valign="top"> This binary package contains all the binaries for the x64 version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The Visual C++ 2013 RTM runtime for x64 is statically linked. The .NET Framework 4.5.1 is required. <br /> (sha1: 779bf6dc8e4b7b4f376544841fc76b99d8799e7d) </td> </tr> |
︙ | ︙ | |||
1792 1793 1794 1795 1796 1797 1798 | <a href="/downloads/1.0.91.0/sqlite-netFx35-binary-PocketPC-ARM-2008-1.0.91.0.zip">sqlite-netFx35-binary-PocketPC-ARM-2008-1.0.91.0.zip</a> <br /> (1.04 MiB) </td> <td width="5"></td> <td valign="top"> This binary package contains all the binaries for the PocketPC version | | | | | 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 | <a href="/downloads/1.0.91.0/sqlite-netFx35-binary-PocketPC-ARM-2008-1.0.91.0.zip">sqlite-netFx35-binary-PocketPC-ARM-2008-1.0.91.0.zip</a> <br /> (1.04 MiB) </td> <td width="5"></td> <td valign="top"> This binary package contains all the binaries for the PocketPC version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The included native binaries should work on all supported ARM versions of Windows CE prior to Windows Embedded Compact 2013. The .NET Compact Framework 3.5 is required. <br /> (sha1: 436dba7c27a88392a2f1a7fa7b5c2fd883d4ee59) </td> </tr> <tr> <td width="10"> </td> <td width="30%" valign="top" align="right"> <a name="sqlite-netFx39-binary-WinCE-ARM-2012"></a> <a href="/downloads/1.0.91.0/sqlite-netFx39-binary-WinCE-ARM-2012-1.0.91.0.zip">sqlite-netFx39-binary-WinCE-ARM-2012-1.0.91.0.zip</a> <br /> (1.15 MiB) </td> <td width="5"></td> <td valign="top"> This binary package contains all the binaries for the Windows Embedded Compact 2013 (ARM) version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The .NET Compact Framework 3.9 is required. <br /> (sha1: 82607774bc68d18466a65244b90ec2be84ce5864) </td> </tr> <tr> <td width="10"> </td> <td width="30%" valign="top" align="right"> <a name="sqlite-netFx39-binary-WinCE-x86-2012"></a> <a href="/downloads/1.0.91.0/sqlite-netFx39-binary-WinCE-x86-2012-1.0.91.0.zip">sqlite-netFx39-binary-WinCE-x86-2012-1.0.91.0.zip</a> <br /> (1.19 MiB) </td> <td width="5"></td> <td valign="top"> This binary package contains all the binaries for the Windows Embedded Compact 2013 (x86) version of the System.Data.SQLite 1.0.91.0 (3.8.3.1) package. The .NET Compact Framework 3.9 is required. <br /> (sha1: beb5cdb22132d872878997b1156fa088a81f415b) </td> </tr> <tr> |
︙ | ︙ | |||
1853 1854 1855 1856 1857 1858 1859 | <a href="http://nuget.org/api/v2/package/System.Data.SQLite/1.0.91.0">System.Data.SQLite.1.0.91.0.nupkg</a> <br /> (5.08 MiB) </td> <td width="5"></td> <td valign="top"> This NuGet package contains all the binaries for both the x86 and x64 | | | 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 | <a href="http://nuget.org/api/v2/package/System.Data.SQLite/1.0.91.0">System.Data.SQLite.1.0.91.0.nupkg</a> <br /> (5.08 MiB) </td> <td width="5"></td> <td valign="top"> This NuGet package contains all the binaries for both the x86 and x64 versions of System.Data.SQLite 1.0.91.0 (3.8.3.1). The .NET Framework 3.5 SP1, 4.0, 4.5, or 4.5.1 is required. For the included native binaries, the version of the Visual C++ runtime corresponding to the .NET Framework used by the associated managed assembly is statically linked. <br /> (sha1: b37e15291a6b8f9d7bdf937259fd7b5f9f4c5399) </td> |
︙ | ︙ | |||
1895 1896 1897 1898 1899 1900 1901 | <a href="http://nuget.org/api/v2/package/System.Data.SQLite.x86/1.0.91.0">System.Data.SQLite.x86.1.0.91.0.nupkg</a> <br /> (2.77 MiB) </td> <td width="5"></td> <td valign="top"> This NuGet package contains all the binaries for the x86 version of | | | | 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 | <a href="http://nuget.org/api/v2/package/System.Data.SQLite.x86/1.0.91.0">System.Data.SQLite.x86.1.0.91.0.nupkg</a> <br /> (2.77 MiB) </td> <td width="5"></td> <td valign="top"> This NuGet package contains all the binaries for the x86 version of System.Data.SQLite 1.0.91.0 (3.8.3.1). The .NET Framework 3.5 SP1, 4.0, 4.5, or 4.5.1 is required. For the included native binaries, the version of the Visual C++ runtime corresponding to the .NET Framework used by the associated managed assembly is statically linked. <br /> (sha1: b72c66ca3245b255ddbda6d6b23663de3581bda5) </td> </tr> <tr> <td width="10"> </td> <td width="30%" valign="top" align="right"> <a href="http://nuget.org/api/v2/package/System.Data.SQLite.x64/1.0.91.0">System.Data.SQLite.x64.1.0.91.0.nupkg</a> <br /> (3.03 MiB) </td> <td width="5"></td> <td valign="top"> This NuGet package contains all the binaries for the x64 version of System.Data.SQLite 1.0.91.0 (3.8.3.1). The .NET Framework 3.5 SP1, 4.0, 4.5, or 4.5.1 is required. For the included native binaries, the version of the Visual C++ runtime corresponding to the .NET Framework used by the associated managed assembly is statically linked. <br /> (sha1: 239f040ca987e675d1a8cd290c0fddb4efadd7a1) </td> </tr> |
︙ | ︙ |
Changes to www/news.wiki.
1 2 3 4 5 | <title>News</title> <b>Version History</b> <p> | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | <title>News</title> <b>Version History</b> <p> <b>1.0.91.0 - February 12, 2014</b> </p> <ul> <li>Updated to [http://www.sqlite.org/releaselog/3_8_3_1.html|SQLite 3.8.3.1].</li> <li>Refresh all included SQLite core library documentation (e.g. SQL syntax).</li> <li>Add support for [http://entityframework.codeplex.com/|Entity Framework 6].</li> <li>Add support for per-connection mappings between type names and DbType values. Pursuant to [e87af1d06a].</li> <li>Modify the namespace used for all internal classes in the System.Data.SQLite.Linq assembly. <b>** Potentially Incompatible Change **</b></li> <li>Add SQLiteCompileOptions and InteropCompileOptions properties to the SQLiteConnection class to return the compile-time options for the SQLite core library and interop assembly, respectively.</li> <li>Add BindInvariantText and ConvertInvariantText connection flags to force the invariant culture to be used when converting parameter values to/from strings.</li> <li>Add NoConnectionPool and UseConnectionPool connection flags to disable or enable connection pooling by default.</li> |
︙ | ︙ |