System.Data.SQLite

Check-in [d345593dba]
Login

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: d345593dba581825d82231eeeb62c3f84e307e7c
User & Date: mistachkin 2015-02-07 02:48:07.425
Context
2015-02-09
21:54
Merge updates from trunk. check-in: 920e646443 user: mistachkin tags: preRelease
2015-02-07
02:48
Merge updates from trunk. check-in: d345593dba user: mistachkin tags: preRelease
01:14
Switch to Visual C++ Redistributable for Visual Studio 2012 Update 4. Update the master release archive manifest. check-in: ee4f54fca8 user: mistachkin tags: trunk
00:46
Update pre-release package metadata. check-in: cd9fe600e1 user: mistachkin tags: preRelease
Changes
Unified Diff Ignore Whitespace Patch
Name change from Externals/MSVCPP/vcredist_x64_2012_VSU3.exe to Externals/MSVCPP/vcredist_x64_2012_VSU4.exe.

cannot compute difference between binary files

Name change from Externals/MSVCPP/vcredist_x86_2012_VSU3.exe to Externals/MSVCPP/vcredist_x86_2012_VSU4.exe.

cannot compute difference between binary files

Changes to Setup/data/verify.lst.
212
213
214
215
216
217
218

219
220
221
222
223
224
225
  Keys/System.Data.SQLite.snk
  NuGet/
  NuGet/shared/
  NuGet/shared/Core/
  NuGet/shared/Core/build/
  NuGet/shared/Core/build/System.Data.SQLite.Core.targets
  NuGet/shared/Core/content/

  NuGet/shared/Core/content/config.transform
  NuGet/net40/
  NuGet/net40/EF6/
  NuGet/net40/EF6/content/
  NuGet/net40/EF6/content/config.transform
  NuGet/net40/EF6/tools/
  NuGet/net40/EF6/tools/provider.ps1







>







212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
  Keys/System.Data.SQLite.snk
  NuGet/
  NuGet/shared/
  NuGet/shared/Core/
  NuGet/shared/Core/build/
  NuGet/shared/Core/build/System.Data.SQLite.Core.targets
  NuGet/shared/Core/content/
  NuGet/shared/Core/content/config.install.xdt
  NuGet/shared/Core/content/config.transform
  NuGet/net40/
  NuGet/net40/EF6/
  NuGet/net40/EF6/content/
  NuGet/net40/EF6/content/config.transform
  NuGet/net40/EF6/tools/
  NuGet/net40/EF6/tools/provider.ps1
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062

###############################################################################
#
# NOTE: This is the list of files that should be present in all setup archives
#       supporting the .NET Framework 4.5 for x86.
#
set sds_manifests(setupX86Vs2012) {
  {{tmp}\vcredist_x86_2012_VSU3.exe}
}

###############################################################################
#
# NOTE: This is the list of files that should be present in all setup archives
#       supporting the .NET Framework 4.5 for x64.
#
set sds_manifests(setupX64Vs2012) {
  {{tmp}\vcredist_x64_2012_VSU3.exe}
}

###############################################################################
#
# NOTE: This is the list of files that should be present in all setup archives
#       supporting the .NET Framework 4.5.1 for x86.
#







|








|







1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063

###############################################################################
#
# NOTE: This is the list of files that should be present in all setup archives
#       supporting the .NET Framework 4.5 for x86.
#
set sds_manifests(setupX86Vs2012) {
  {{tmp}\vcredist_x86_2012_VSU4.exe}
}

###############################################################################
#
# NOTE: This is the list of files that should be present in all setup archives
#       supporting the .NET Framework 4.5 for x64.
#
set sds_manifests(setupX64Vs2012) {
  {{tmp}\vcredist_x64_2012_VSU4.exe}
}

###############################################################################
#
# NOTE: This is the list of files that should be present in all setup archives
#       supporting the .NET Framework 4.5.1 for x86.
#
Changes to Setup/set_netFx45.bat.
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
::

IF NOT DEFINED ISNETFX2 (
  SET ISNETFX2=False
)

IF NOT DEFINED VCRUNTIME (
  SET VCRUNTIME=2012_VSU3
)

IF NOT DEFINED CONFIGURATION (
  SET CONFIGURATION=Release
)

IF NOT DEFINED PLATFORM (







|







8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
::

IF NOT DEFINED ISNETFX2 (
  SET ISNETFX2=False
)

IF NOT DEFINED VCRUNTIME (
  SET VCRUNTIME=2012_VSU4
)

IF NOT DEFINED CONFIGURATION (
  SET CONFIGURATION=Release
)

IF NOT DEFINED PLATFORM (
Changes to Setup/set_x64_2012.bat.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@ECHO OFF

::
:: set_x64_2012.bat --
::
:: Written by Joe Mistachkin.
:: Released to the public domain, use at your own risk!
::

SET ISNETFX2=False
SET VCRUNTIME=2012_VSU3
SET PLATFORM=x64
SET PROCESSOR=x64
SET YEAR=2012










|



1
2
3
4
5
6
7
8
9
10
11
12
13
14
@ECHO OFF

::
:: set_x64_2012.bat --
::
:: Written by Joe Mistachkin.
:: Released to the public domain, use at your own risk!
::

SET ISNETFX2=False
SET VCRUNTIME=2012_VSU4
SET PLATFORM=x64
SET PROCESSOR=x64
SET YEAR=2012
Changes to Setup/set_x86_2012.bat.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@ECHO OFF

::
:: set_x86_2012.bat --
::
:: Written by Joe Mistachkin.
:: Released to the public domain, use at your own risk!
::

SET ISNETFX2=False
SET VCRUNTIME=2012_VSU3
SET PLATFORM=Win32
SET PROCESSOR=x86
SET YEAR=2012










|



1
2
3
4
5
6
7
8
9
10
11
12
13
14
@ECHO OFF

::
:: set_x86_2012.bat --
::
:: Written by Joe Mistachkin.
:: Released to the public domain, use at your own risk!
::

SET ISNETFX2=False
SET VCRUNTIME=2012_VSU4
SET PLATFORM=Win32
SET PROCESSOR=x86
SET YEAR=2012
Changes to www/downloads.wiki.
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
        (10.12 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.95.0 (3.8.8.2) 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.  However, if you do not
        require the design-time components, please consider downloading the
        associated
        <a href="/downloads/1.0.95.0/sqlite-netFx45-binary-bundle-Win32-2012-1.0.95.0.zip">Precompiled Binaries</a>







|







750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
        (10.12 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.95.0 (3.8.8.2) package.  The Visual C++ 2012
        Update 4 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.  However, if you do not
        require the design-time components, please consider downloading the
        associated
        <a href="/downloads/1.0.95.0/sqlite-netFx45-binary-bundle-Win32-2012-1.0.95.0.zip">Precompiled Binaries</a>
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
        <br />
        (10.15 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.95.0
        (3.8.8.2) package.  The Visual C++ 2012 Update 3 runtime for x86 is
        included.  The .NET Framework 4.5 is required.
        <br />
        (sha1: fe2e5bef2750933c9836625019dec4ac692f7b1f)
      </td>
    </tr>

    <tr>







|







776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
        <br />
        (10.15 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.95.0
        (3.8.8.2) package.  The Visual C++ 2012 Update 4 runtime for x86 is
        included.  The .NET Framework 4.5 is required.
        <br />
        (sha1: fe2e5bef2750933c9836625019dec4ac692f7b1f)
      </td>
    </tr>

    <tr>
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
        (10.78 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.95.0 (3.8.8.2) package.  The Visual C++ 2012
        Update 3 runtime for x64 is included.  The .NET Framework 4.5 is
        required.
        <br />
        (sha1: 103542354baf3f544a94af123c8a548bb37ceb3c)
      </td>
    </tr>

    <tr>
      <td width="10">&nbsp;</td>
      <td width="30%" valign="top" align="right">
        <a name="sqlite-netFx45-setup-x64-2012"></a>
        <a href="/downloads/1.0.95.0/sqlite-netFx45-setup-x64-2012-1.0.95.0.exe">sqlite-netFx45-setup-x64-2012-1.0.95.0.exe</a>
        <br />
        (10.82 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.95.0
        (3.8.8.2) package.  The Visual C++ 2012 Update 3 runtime for x64 is
        included.  The .NET Framework 4.5 is required.
        <br />
        (sha1: b324dc54d510ca77bf26350c7b3bc601f7df61fe)
      </td>
    </tr>

    <tr>







|


















|







802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
        (10.78 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.95.0 (3.8.8.2) package.  The Visual C++ 2012
        Update 4 runtime for x64 is included.  The .NET Framework 4.5 is
        required.
        <br />
        (sha1: 103542354baf3f544a94af123c8a548bb37ceb3c)
      </td>
    </tr>

    <tr>
      <td width="10">&nbsp;</td>
      <td width="30%" valign="top" align="right">
        <a name="sqlite-netFx45-setup-x64-2012"></a>
        <a href="/downloads/1.0.95.0/sqlite-netFx45-setup-x64-2012-1.0.95.0.exe">sqlite-netFx45-setup-x64-2012-1.0.95.0.exe</a>
        <br />
        (10.82 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.95.0
        (3.8.8.2) package.  The Visual C++ 2012 Update 4 runtime for x64 is
        included.  The .NET Framework 4.5 is required.
        <br />
        (sha1: b324dc54d510ca77bf26350c7b3bc601f7df61fe)
      </td>
    </tr>

    <tr>
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
        <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.95.0
        (3.8.8.2) package.  The Visual C++ 2012 Update 3 runtime for x86 and
        the .NET Framework 4.5 are required.
        <br />
        (sha1: df9afb6e8b776d9d726369c65f40600f0378c694)
      </td>
    </tr>

    <tr>
      <td width="10">&nbsp;</td>
      <td width="30%" valign="top" align="right">
        <a name="sqlite-netFx45-binary-Win32-2012"></a>
        <a href="/downloads/1.0.95.0/sqlite-netFx45-binary-Win32-2012-1.0.95.0.zip">sqlite-netFx45-binary-Win32-2012-1.0.95.0.zip</a>
        <br />
        (2.11 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.95.0 (3.8.8.2) package.  The Visual C++ 2012
        Update 3 runtime for x86 and the .NET Framework 4.5 are required.
        <br />
        (sha1: acea2653653cd437a008b33031e007e42248e216)
      </td>
    </tr>

    <tr>
      <td colspan="4">







|


















|







1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
        <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.95.0
        (3.8.8.2) package.  The Visual C++ 2012 Update 4 runtime for x86 and
        the .NET Framework 4.5 are required.
        <br />
        (sha1: df9afb6e8b776d9d726369c65f40600f0378c694)
      </td>
    </tr>

    <tr>
      <td width="10">&nbsp;</td>
      <td width="30%" valign="top" align="right">
        <a name="sqlite-netFx45-binary-Win32-2012"></a>
        <a href="/downloads/1.0.95.0/sqlite-netFx45-binary-Win32-2012-1.0.95.0.zip">sqlite-netFx45-binary-Win32-2012-1.0.95.0.zip</a>
        <br />
        (2.11 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.95.0 (3.8.8.2) package.  The Visual C++ 2012
        Update 4 runtime for x86 and the .NET Framework 4.5 are required.
        <br />
        (sha1: acea2653653cd437a008b33031e007e42248e216)
      </td>
    </tr>

    <tr>
      <td colspan="4">
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
        <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.95.0
        (3.8.8.2) package.  The Visual C++ 2012 Update 3 runtime for x64 and
        the .NET Framework 4.5 are required.
        <br />
        (sha1: da78ed7645a1b16b1f9250b9ae0a550696308671)
      </td>
    </tr>

    <tr>
      <td width="10">&nbsp;</td>
      <td width="30%" valign="top" align="right">
        <a name="sqlite-netFx45-binary-x64-2012"></a>
        <a href="/downloads/1.0.95.0/sqlite-netFx45-binary-x64-2012-1.0.95.0.zip">sqlite-netFx45-binary-x64-2012-1.0.95.0.zip</a>
        <br />
        (2.16 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.95.0 (3.8.8.2) package.  The Visual C++ 2012
        Update 3 runtime for x64 and the .NET Framework 4.5 are required.
        <br />
        (sha1: b4066de9ff013b5489c390d0a4bace125a81eac9)
      </td>
    </tr>

    <tr>
      <td colspan="4">







|


















|







1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
        <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.95.0
        (3.8.8.2) package.  The Visual C++ 2012 Update 4 runtime for x64 and
        the .NET Framework 4.5 are required.
        <br />
        (sha1: da78ed7645a1b16b1f9250b9ae0a550696308671)
      </td>
    </tr>

    <tr>
      <td width="10">&nbsp;</td>
      <td width="30%" valign="top" align="right">
        <a name="sqlite-netFx45-binary-x64-2012"></a>
        <a href="/downloads/1.0.95.0/sqlite-netFx45-binary-x64-2012-1.0.95.0.zip">sqlite-netFx45-binary-x64-2012-1.0.95.0.zip</a>
        <br />
        (2.16 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.95.0 (3.8.8.2) package.  The Visual C++ 2012
        Update 4 runtime for x64 and the .NET Framework 4.5 are required.
        <br />
        (sha1: b4066de9ff013b5489c390d0a4bace125a81eac9)
      </td>
    </tr>

    <tr>
      <td colspan="4">
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
        <br />
        (2.39 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.95.0
        (3.8.8.2) package.  The Visual C++ 2012 Update 3 runtime for x86 is
        statically linked.  The .NET Framework 4.5 is required.
        <br />
        (sha1: b885f1f7d0da4422885997f8fba643324c8ca9f1)
      </td>
    </tr>

    <tr>
      <td width="10">&nbsp;</td>
      <td width="30%" valign="top" align="right">
        <a name="sqlite-netFx45-static-binary-Win32-2012"></a>
        <a href="/downloads/1.0.95.0/sqlite-netFx45-static-binary-Win32-2012-1.0.95.0.zip">sqlite-netFx45-static-binary-Win32-2012-1.0.95.0.zip</a>
        <br />
        (2.44 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.95.0 (3.8.8.2) package.  The Visual C++ 2012
        Update 3 runtime for x86 is statically linked.  The .NET Framework 4.5
        is required.
        <br />
        (sha1: fdbaa95859680205f5b4717bc0fb890cc025ca0e)
      </td>
    </tr>

    <tr>







|


















|







1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
        <br />
        (2.39 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.95.0
        (3.8.8.2) package.  The Visual C++ 2012 Update 4 runtime for x86 is
        statically linked.  The .NET Framework 4.5 is required.
        <br />
        (sha1: b885f1f7d0da4422885997f8fba643324c8ca9f1)
      </td>
    </tr>

    <tr>
      <td width="10">&nbsp;</td>
      <td width="30%" valign="top" align="right">
        <a name="sqlite-netFx45-static-binary-Win32-2012"></a>
        <a href="/downloads/1.0.95.0/sqlite-netFx45-static-binary-Win32-2012-1.0.95.0.zip">sqlite-netFx45-static-binary-Win32-2012-1.0.95.0.zip</a>
        <br />
        (2.44 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.95.0 (3.8.8.2) package.  The Visual C++ 2012
        Update 4 runtime for x86 is statically linked.  The .NET Framework 4.5
        is required.
        <br />
        (sha1: fdbaa95859680205f5b4717bc0fb890cc025ca0e)
      </td>
    </tr>

    <tr>
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
        <br />
        (2.36 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.95.0
        (3.8.8.2) package.  The Visual C++ 2012 Update 3 runtime for x64 is
        statically linked.  The .NET Framework 4.5 is required.
        <br />
        (sha1: b35c0ebdcb09a3ed5ac579feab827f657e5d4738)
      </td>
    </tr>

    <tr>
      <td width="10">&nbsp;</td>
      <td width="30%" valign="top" align="right">
        <a name="sqlite-netFx45-static-binary-x64-2012"></a>
        <a href="/downloads/1.0.95.0/sqlite-netFx45-static-binary-x64-2012-1.0.95.0.zip">sqlite-netFx45-static-binary-x64-2012-1.0.95.0.zip</a>
        <br />
        (2.42 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.95.0 (3.8.8.2) package.  The Visual C++ 2012
        Update 3 runtime for x64 is statically linked.  The .NET Framework 4.5
        is required.
        <br />
        (sha1: c8c8034c1319f8e96e153f6ab40ac0ff8d833c80)
      </td>
    </tr>

    <tr>







|


















|







1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
        <br />
        (2.36 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.95.0
        (3.8.8.2) package.  The Visual C++ 2012 Update 4 runtime for x64 is
        statically linked.  The .NET Framework 4.5 is required.
        <br />
        (sha1: b35c0ebdcb09a3ed5ac579feab827f657e5d4738)
      </td>
    </tr>

    <tr>
      <td width="10">&nbsp;</td>
      <td width="30%" valign="top" align="right">
        <a name="sqlite-netFx45-static-binary-x64-2012"></a>
        <a href="/downloads/1.0.95.0/sqlite-netFx45-static-binary-x64-2012-1.0.95.0.zip">sqlite-netFx45-static-binary-x64-2012-1.0.95.0.zip</a>
        <br />
        (2.42 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.95.0 (3.8.8.2) package.  The Visual C++ 2012
        Update 4 runtime for x64 is statically linked.  The .NET Framework 4.5
        is required.
        <br />
        (sha1: c8c8034c1319f8e96e153f6ab40ac0ff8d833c80)
      </td>
    </tr>

    <tr>