Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | 1.0.61.0 |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | sourceforge |
Files: | files | file ages | folders |
SHA1: |
734737fbb64bbcf23177eb59a7c52e8b |
User & Date: | rmsimpson 2009-04-28 17:09:34.000 |
Context
2009-06-19
| ||
20:57 | 1.0.62.0 check-in: 5ab035e676 user: rmsimpson tags: sourceforge | |
2009-04-28
| ||
17:09 | 1.0.61.0 check-in: 734737fbb6 user: rmsimpson tags: sourceforge | |
16:17 | SQLite 3.6.13 check-in: d309051563 user: rmsimpson tags: sourceforge | |
Changes
Changes to Doc/Extra/dbfactorysupport.html.
︙ | ︙ | |||
93 94 95 96 97 98 99 | <configuration> <system.data> <DbProviderFactories> <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, | | | 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | <configuration> <system.data> <DbProviderFactories> <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.61.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139"/> </DbProviderFactories> </system.data> </configuration> </pre> </div> <p> |
︙ | ︙ |
Changes to Doc/Extra/version.html.
︙ | ︙ | |||
51 52 53 54 55 56 57 58 59 60 61 62 63 64 | </td> </tr> </table> </div> <div id="mainSection"> <div id="mainBody"> <h1 class="heading">Version History</h1> <p><b>1.0.60.0 - October 3, 2008</b></p> <ul> <li>Throw a NotSupported exception in the EF Sql Gen code instead of parsing illegal SQL during an update/insert/delete where no primary key is defined.</li> <li>Fixed the Compact Framework interop library. Since the linker flag /subsystem had no version specified, it was causing a problem for many CE-based platforms.</li> | > > > > > > > | 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | </td> </tr> </table> </div> <div id="mainSection"> <div id="mainBody"> <h1 class="heading">Version History</h1> <p><b>1.0.61.0 - April 28, 2009</b></p> <ul> <li>Code merge with SQLite 3.6.13. The new backup features are as yet unimplemented in the provider, but will be forthcoming in a subsequent release</li> <li>Fixed the default-value lookups in SQLiteConnectionStringBuilder when accessing properties</li> <li>Lock the SQLiteTransaction object during dispose to avoid potential race condition during cleanup</li> <li>Fixed SQLiteDataReader.GetDecimal() processing and parsing of decimal values for cases when SQLite returns things like "1.0e-05" instead of "0.0001"</li> </ul> <p><b>1.0.60.0 - October 3, 2008</b></p> <ul> <li>Throw a NotSupported exception in the EF Sql Gen code instead of parsing illegal SQL during an update/insert/delete where no primary key is defined.</li> <li>Fixed the Compact Framework interop library. Since the linker flag /subsystem had no version specified, it was causing a problem for many CE-based platforms.</li> |
︙ | ︙ |
Changes to Doc/SQLite.NET.chm.
cannot compute difference between binary files
Changes to System.Data.SQLite/AssemblyInfo.cs.
︙ | ︙ | |||
43 44 45 46 47 48 49 | // Major Version // Minor Version // Build Number // Revision // // You can specify all the values or you can default the Revision and Build Numbers // by using the '*' as shown below: | | | | 43 44 45 46 47 48 49 50 51 52 53 | // Major Version // Minor Version // Build Number // Revision // // You can specify all the values or you can default the Revision and Build Numbers // by using the '*' as shown below: [assembly: AssemblyVersion("1.0.61.0")] #if !PLATFORM_COMPACTFRAMEWORK [assembly: AssemblyFileVersion("1.0.61.0")] #endif |
Changes to System.Data.SQLite/SQLiteConnectionStringBuilder.cs.
︙ | ︙ | |||
51 52 53 54 55 56 57 | /// <summary> /// Private initializer, which assigns the connection string and resets the builder /// </summary> /// <param name="cnnString">The connection string to assign</param> private void Initialize(string cnnString) { | | | 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | /// <summary> /// Private initializer, which assigns the connection string and resets the builder /// </summary> /// <param name="cnnString">The connection string to assign</param> private void Initialize(string cnnString) { _properties = new Hashtable(StringComparer.InvariantCultureIgnoreCase); try { base.GetProperties(_properties); } catch(NotImplementedException) { FallbackGetProperties(_properties); |
︙ | ︙ |
Changes to System.Data.SQLite/SQLiteDataReader.cs.
︙ | ︙ | |||
398 399 400 401 402 403 404 | /// <returns>decimal</returns> public override decimal GetDecimal(int i) { if (i >= VisibleFieldCount && _keyInfo != null) return _keyInfo.GetDecimal(i - VisibleFieldCount); VerifyType(i, DbType.Decimal); | | | 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 | /// <returns>decimal</returns> public override decimal GetDecimal(int i) { if (i >= VisibleFieldCount && _keyInfo != null) return _keyInfo.GetDecimal(i - VisibleFieldCount); VerifyType(i, DbType.Decimal); return Decimal.Parse(_activeStatement._sql.GetText(_activeStatement, i), NumberStyles.AllowDecimalPoint | NumberStyles.AllowExponent, CultureInfo.InvariantCulture); } /// <summary> /// Returns the column as a double /// </summary> /// <param name="i">The index of the column to retrieve</param> /// <returns>double</returns> |
︙ | ︙ |
Changes to System.Data.SQLite/SQLiteTransaction.cs.
︙ | ︙ | |||
96 97 98 99 100 101 102 | /// <summary> /// Disposes the transaction. If it is currently active, any changes are rolled back. /// </summary> protected override void Dispose(bool disposing) { if (disposing) { | > > | | | > | 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | /// <summary> /// Disposes the transaction. If it is currently active, any changes are rolled back. /// </summary> protected override void Dispose(bool disposing) { if (disposing) { lock (this) { if (IsValid(false)) Rollback(); _cnn = null; } } base.Dispose(disposing); } /// <summary> /// Gets the isolation level of the transaction. SQLite only supports Serializable transactions. /// </summary> |
︙ | ︙ |
Changes to System.Data.SQLite/UnsafeNativeMethods.cs.
︙ | ︙ | |||
19 20 21 22 23 24 25 | #if !SQLITE_STANDARD #if !USE_INTEROP_DLL #if !PLATFORM_COMPACTFRAMEWORK private const string SQLITE_DLL = "System.Data.SQLite.DLL"; #else | | | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | #if !SQLITE_STANDARD #if !USE_INTEROP_DLL #if !PLATFORM_COMPACTFRAMEWORK private const string SQLITE_DLL = "System.Data.SQLite.DLL"; #else internal const string SQLITE_DLL = "SQLite.Interop.061.DLL"; #endif // PLATFORM_COMPACTFRAMEWORK #else private const string SQLITE_DLL = "SQLite.Interop.DLL"; #endif // USE_INTEROP_DLL #else |
︙ | ︙ |
Changes to bin/CompactFramework/System.Data.SQLite.DLL.
cannot compute difference between binary files
Changes to bin/CompactFramework/testce.exe.
cannot compute difference between binary files
Changes to bin/ManagedOnly/System.Data.SQLite.dll.
cannot compute difference between binary files
Changes to bin/System.Data.SQLite.dll.
cannot compute difference between binary files
Changes to bin/System.Data.SQLite.lib.
cannot compute difference between binary files
Changes to bin/itanium/System.Data.SQLite.DLL.
cannot compute difference between binary files
Changes to bin/itanium/System.Data.SQLite.lib.
cannot compute difference between binary files
Changes to bin/test.exe.
cannot compute difference between binary files
Changes to bin/tools/mergebin.exe.
cannot compute difference between binary files
Changes to bin/x64/System.Data.SQLite.DLL.
cannot compute difference between binary files
Changes to bin/x64/System.Data.SQLite.lib.
cannot compute difference between binary files
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 2.0/3.5 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 2.0/3.5 SQLite Data Provider<br> Version 1.0.61.0 April 28, 2009<br> Using SQLite 3.6.13<br> Written by Robert Simpson (<a href="mailto:robert@blackcastlesoft.com">robert@blackcastlesoft.com</a>)<br> Released to the public domain, use at your own risk!<br> Official provider website: <a href="http://sqlite.phxsoftware.com">http://sqlite.phxsoftware.com</a><br /> <br> The latest version can be downloaded <a href="http://sourceforge.net/projects/sqlite-dotnet2"> here</a> <br> |
︙ | ︙ | |||
122 123 124 125 126 127 128 129 130 131 132 133 134 135 | <p> The core sqlite engine is compiled directly from the unmodified source code available at the sqlite.org website. Several additional pieces are compiled on top of it to extend its functionality, but the core engine's source is not changed.</p> <p></p> <p> <b>Version History</b></p> <p><b>1.0.59.0 - September 22, 2008</b></p> <ul> <li>Code merge with SQLite 3.6.3. Solves a couple different EF issues that were either giving inconsistent results or crashing the engine.</li> <li>Fixed the parsing of literal binaries in the EF SqlGen code. SQLite now passes nearly all the testcases in | > > > > > > > > > > > > > > > > > > > > > > | 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 | <p> The core sqlite engine is compiled directly from the unmodified source code available at the sqlite.org website. Several additional pieces are compiled on top of it to extend its functionality, but the core engine's source is not changed.</p> <p></p> <p> <b>Version History</b></p> <p><b>1.0.61.0 - April 28, 2009</b></p> <ul> <li>Code merge with SQLite 3.6.13. The new backup features are as yet unimplemented in the provider, but will be forthcoming in a subsequent release</li> <li>Fixed the default-value lookups in SQLiteConnectionStringBuilder when accessing properties</li> <li>Lock the SQLiteTransaction object during dispose to avoid potential race condition during cleanup</li> <li>Fixed SQLiteDataReader.GetDecimal() processing and parsing of decimal values for cases when SQLite returns things like "1.0e-05" instead of "0.0001"</li> </ul> <p><b>1.0.60.0 - October 3, 2008</b></p> <ul> <li>Throw a NotSupported exception in the EF Sql Gen code instead of parsing illegal SQL during an update/insert/delete where no primary key is defined.</li> <li>Fixed the Compact Framework interop library. Since the linker flag /subsystem had no version specified, it was causing a problem for many CE-based platforms.</li> <li>Incorporated SQLite patch for ticket <a href="http://www.sqlite.org/cvstrac/tktview?tn=3387">#3387</a> and reverted out the vfs override code I added in build 59 to work around this problem.</li> <li>Fixed a designer issue when creating a new table from the Server Explorer. After initially saving it, if you then continued to edit it and tried to save it again, it would generate the change SQL using the old temporary table name rather than the new name.</li> </ul> <p><b>1.0.59.0 - September 22, 2008</b></p> <ul> <li>Code merge with SQLite 3.6.3. Solves a couple different EF issues that were either giving inconsistent results or crashing the engine.</li> <li>Fixed the parsing of literal binaries in the EF SqlGen code. SQLite now passes nearly all the testcases in |
︙ | ︙ |
Changes to test/TestCases.cs.
︙ | ︙ | |||
1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 | } } catch (Exception e) { Console.WriteLine(e.Message); } } [Test] internal void LeakyCommands() { for (int n = 0; n < 100000; n++) { DbCommand cmd = _cnn.CreateCommand(); | > > > > > > > > > > | 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 | } } catch (Exception e) { Console.WriteLine(e.Message); } } [Test] internal void ConnectionStringBuilder() { DbConnectionStringBuilder builder = _fact.CreateConnectionStringBuilder(); if (builder is SQLiteConnectionStringBuilder) { bool pool = ((SQLiteConnectionStringBuilder)builder).Pooling; } } [Test] internal void LeakyCommands() { for (int n = 0; n < 100000; n++) { DbCommand cmd = _cnn.CreateCommand(); |
︙ | ︙ | |||
1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 | if (b[100] != 2) throw new Exception("Binary value non-match byte 100"); if (b[1000] != 3) throw new Exception("Binary value non-match byte 1000"); if (b[2000] != 4) throw new Exception("Binary value non-match byte 2000"); if (b[3000] != 5) throw new Exception("Binary value non-match byte 3000"); } } } [Test(Sequence = 30)] internal void VerifyInsert() { using (DbCommand cmd = _cnn.CreateCommand()) { cmd.CommandText = "SELECT Field1, Field2, [Fiëld3], [Fiæld4], Field5 FROM TestCase"; | > > > > > > > > > > > > > > > > > > > > | 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 | if (b[100] != 2) throw new Exception("Binary value non-match byte 100"); if (b[1000] != 3) throw new Exception("Binary value non-match byte 1000"); if (b[2000] != 4) throw new Exception("Binary value non-match byte 2000"); if (b[3000] != 5) throw new Exception("Binary value non-match byte 3000"); } } } [Test] internal void DecimalTest() { using (DbCommand cmd = _cnn.CreateCommand()) { cmd.CommandText = "CREATE TEMP TABLE DECTEST(x DECIMAL)"; cmd.ExecuteNonQuery(); cmd.CommandText = "INSERT INTO DECTEST(x) VALUES(0.00001)"; cmd.ExecuteNonQuery(); cmd.CommandText = "SELECT * FROM DECTEST"; using (DbDataReader reader = cmd.ExecuteReader()) { reader.Read(); decimal d = (decimal)reader.GetValue(0); d = reader.GetDecimal(0); } } } [Test(Sequence = 30)] internal void VerifyInsert() { using (DbCommand cmd = _cnn.CreateCommand()) { cmd.CommandText = "SELECT Field1, Field2, [Fiëld3], [Fiæld4], Field5 FROM TestCase"; |
︙ | ︙ |
Changes to tools/mergebin/mergebin.cpp.
︙ | ︙ | |||
490 491 492 493 494 495 496 497 498 499 500 501 502 503 | // Figure out by how much we need to change the RVA's to compensate for the relocation diffRVA = dwDestRVA - dwMinRVA; pCor = peDest; // Fixup the DLL entrypoints if (pNT) { if (pNT->OptionalHeader.AddressOfEntryPoint != dwNewEntrypoint) { pCor->EntryPointToken = pNT->OptionalHeader.AddressOfEntryPoint; pNT->OptionalHeader.AddressOfEntryPoint = dwNewEntrypoint; } } else | > > | 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 | // Figure out by how much we need to change the RVA's to compensate for the relocation diffRVA = dwDestRVA - dwMinRVA; pCor = peDest; // Fixup the DLL entrypoints if (pNT) { pNT->OptionalHeader.MajorOperatingSystemVersion = 4; pNT->OptionalHeader.MajorSubsystemVersion = 4; if (pNT->OptionalHeader.AddressOfEntryPoint != dwNewEntrypoint) { pCor->EntryPointToken = pNT->OptionalHeader.AddressOfEntryPoint; pNT->OptionalHeader.AddressOfEntryPoint = dwNewEntrypoint; } } else |
︙ | ︙ |
Changes to tools/setup/exe/setup/setup.rc.
︙ | ︙ | |||
53 54 55 56 57 58 59 | ///////////////////////////////////////////////////////////////////////////// // // Version // VS_VERSION_INFO VERSIONINFO | | | | 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | ///////////////////////////////////////////////////////////////////////////// // // Version // VS_VERSION_INFO VERSIONINFO FILEVERSION 1,0,61,0 PRODUCTVERSION 1,0,0,0 FILEFLAGSMASK 0x17L #ifdef _DEBUG FILEFLAGS 0x1L #else FILEFLAGS 0x0L #endif FILEOS 0x4L FILETYPE 0x1L FILESUBTYPE 0x0L BEGIN BLOCK "StringFileInfo" BEGIN BLOCK "040904b0" BEGIN VALUE "Comments", "http://sqlite.phxsoftware.com" VALUE "FileDescription", "SQLite ADO.NET 2.0 Setup" VALUE "FileVersion", "1.0.61.0" VALUE "InternalName", "setup" VALUE "LegalCopyright", "Released to the public domain" VALUE "OriginalFilename", "setup.exe" VALUE "ProductName", "System.Data.SQLite" VALUE "ProductVersion", "1.0" END END |
︙ | ︙ |
Changes to tools/setup/sqlite_setup.suo.
cannot compute difference between binary files
Changes to tools/setup/sqlite_setup.vdproj.
︙ | ︙ | |||
130 131 132 133 134 135 136 137 138 139 140 141 | "Entry" { "MsmKey" = "8:_9352653B827F735B8C3BE81D11522ECC" "OwnerKey" = "8:_B00FB4712154B7A5894294702C96689D" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_A7448E608040319F6C5E12637881B1F6" "OwnerKey" = "8:_CD3CE5CDAB13405EA6EAAADC95F88D2E" "MsmSig" = "8:_UNDEFINED" } | > > > > > > < < < < < < | 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 | "Entry" { "MsmKey" = "8:_9352653B827F735B8C3BE81D11522ECC" "OwnerKey" = "8:_B00FB4712154B7A5894294702C96689D" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_A18DBDB7776215EAD9A52C96F8CA1E91" "OwnerKey" = "8:_40F352185F3B41A485F42BFC64BF9162" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_A7448E608040319F6C5E12637881B1F6" "OwnerKey" = "8:_CD3CE5CDAB13405EA6EAAADC95F88D2E" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_B00FB4712154B7A5894294702C96689D" "OwnerKey" = "8:_A7448E608040319F6C5E12637881B1F6" "MsmSig" = "8:_UNDEFINED" } "Entry" |
︙ | ︙ | |||
167 168 169 170 171 172 173 | { "MsmKey" = "8:_B6156897CBBB4E929D9C1F7358CE9E90" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { | | | 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 | { "MsmKey" = "8:_B6156897CBBB4E929D9C1F7358CE9E90" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_C76942DD342D4470B6F652A1C8AB6AC8" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_C8E329AC56AD4C88A986481E639F72A5" "OwnerKey" = "8:_UNDEFINED" |
︙ | ︙ | |||
232 233 234 235 236 237 238 239 240 241 242 243 244 245 | "Entry" { "MsmKey" = "8:_D7FECFD3C8164DA7B3712AF54D0CDDAD" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_E6DB5A9B08AC4645A19C948BBFDD0348" "OwnerKey" = "8:_CD3CE5CDAB13405EA6EAAADC95F88D2E" "MsmSig" = "8:_UNDEFINED" } "Entry" { | > > > > > > | 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 | "Entry" { "MsmKey" = "8:_D7FECFD3C8164DA7B3712AF54D0CDDAD" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_DE6E9C1CBC3E4D81B6B124203180BC82" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_E6DB5A9B08AC4645A19C948BBFDD0348" "OwnerKey" = "8:_CD3CE5CDAB13405EA6EAAADC95F88D2E" "MsmSig" = "8:_UNDEFINED" } "Entry" { |
︙ | ︙ | |||
257 258 259 260 261 262 263 | { "MsmKey" = "8:_E6DB5A9B08AC4645A19C948BBFDD0348" "OwnerKey" = "8:_244D4945EA335F5E4E54085BFD020CC1" "MsmSig" = "8:_UNDEFINED" } "Entry" { | < < < < < < < < < < < < < < < < < < | 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 | { "MsmKey" = "8:_E6DB5A9B08AC4645A19C948BBFDD0348" "OwnerKey" = "8:_244D4945EA335F5E4E54085BFD020CC1" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_F320FBAE871DA320178BEEA242900CC7" "OwnerKey" = "8:_2C7EDFF06B61482393D94E3A63D90113" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_F320FBAE871DA320178BEEA242900CC7" "OwnerKey" = "8:_CE9E3EF0722342DB8DE0860C0DDCD39E" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" "OwnerKey" = "8:_B29C75F5F4D24817846DCEF9951068E1" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" "OwnerKey" = "8:_E6DB5A9B08AC4645A19C948BBFDD0348" "MsmSig" = "8:_UNDEFINED" } "Entry" |
︙ | ︙ | |||
315 316 317 318 319 320 321 322 323 324 325 326 327 328 | } "Entry" { "MsmKey" = "8:_UNDEFINED" "OwnerKey" = "8:_CD3CE5CDAB13405EA6EAAADC95F88D2E" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" "OwnerKey" = "8:_B00FB4712154B7A5894294702C96689D" "MsmSig" = "8:_UNDEFINED" } "Entry" | > > > > > > | 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 | } "Entry" { "MsmKey" = "8:_UNDEFINED" "OwnerKey" = "8:_CD3CE5CDAB13405EA6EAAADC95F88D2E" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" "OwnerKey" = "8:_CA378DC7967442BAA821EDC0F78B57B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" "OwnerKey" = "8:_B00FB4712154B7A5894294702C96689D" "MsmSig" = "8:_UNDEFINED" } "Entry" |
︙ | ︙ | |||
345 346 347 348 349 350 351 352 353 354 355 356 357 358 | } "Entry" { "MsmKey" = "8:_UNDEFINED" "OwnerKey" = "8:_40F352185F3B41A485F42BFC64BF9162" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" "OwnerKey" = "8:_40DFF08BA903482D807E715A041CA8B1" "MsmSig" = "8:_UNDEFINED" } "Entry" | > > > > > > | 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 | } "Entry" { "MsmKey" = "8:_UNDEFINED" "OwnerKey" = "8:_40F352185F3B41A485F42BFC64BF9162" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" "OwnerKey" = "8:_A18DBDB7776215EAD9A52C96F8CA1E91" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" "OwnerKey" = "8:_40DFF08BA903482D807E715A041CA8B1" "MsmSig" = "8:_UNDEFINED" } "Entry" |
︙ | ︙ | |||
648 649 650 651 652 653 654 | "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2C7EDFF06B61482393D94E3A63D90113" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" | | | 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 | "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2C7EDFF06B61482393D94E3A63D90113" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" "AssemblyAsmDisplayName" = "8:test, Version=1.0.0.17392, Culture=neutral, processorArchitecture=x86" "ScatterAssemblies" { "_2C7EDFF06B61482393D94E3A63D90113" { "Name" = "8:test.exe" "Attributes" = "3:512" } |
︙ | ︙ | |||
792 793 794 795 796 797 798 | "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_40F352185F3B41A485F42BFC64BF9162" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" | | | 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 | "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_40F352185F3B41A485F42BFC64BF9162" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" "AssemblyAsmDisplayName" = "8:testce, Version=1.0.0.16959, Culture=neutral, processorArchitecture=MSIL" "ScatterAssemblies" { "_40F352185F3B41A485F42BFC64BF9162" { "Name" = "8:testce.exe" "Attributes" = "3:512" } |
︙ | ︙ | |||
920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 | "Permanent" = "11:FALSE" "SharedLegacy" = "11:FALSE" "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:TRUE" "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A7448E608040319F6C5E12637881B1F6" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:TRUE" "AssemblyAsmDisplayName" = "8:Microsoft.VisualStudio.Shell, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { "_A7448E608040319F6C5E12637881B1F6" { "Name" = "8:Microsoft.VisualStudio.Shell.dll" "Attributes" = "3:512" } } "SourcePath" = "8:Microsoft.VisualStudio.Shell.dll" "TargetName" = "8:" "Tag" = "8:" | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > < < < < < < < < < < < < < < < < < < < < | 920 921 922 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 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 | "Permanent" = "11:FALSE" "SharedLegacy" = "11:FALSE" "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:TRUE" "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A18DBDB7776215EAD9A52C96F8CA1E91" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" "AssemblyAsmDisplayName" = "8:System.Data.SQLite, Version=1.0.61.0, Culture=neutral, PublicKeyToken=1fdb50b1b62b4c84, processorArchitecture=MSIL" "ScatterAssemblies" { "_A18DBDB7776215EAD9A52C96F8CA1E91" { "Name" = "8:System.Data.SQLite.DLL" "Attributes" = "3:512" } } "SourcePath" = "8:System.Data.SQLite.DLL" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_10C8E86E2EEF451BB40F774C35C5466F" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" "ReadOnly" = "11:FALSE" "Hidden" = "11:FALSE" "System" = "11:FALSE" "Permanent" = "11:FALSE" "SharedLegacy" = "11:FALSE" "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A7448E608040319F6C5E12637881B1F6" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:TRUE" "AssemblyAsmDisplayName" = "8:Microsoft.VisualStudio.Shell, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { "_A7448E608040319F6C5E12637881B1F6" { "Name" = "8:Microsoft.VisualStudio.Shell.dll" "Attributes" = "3:512" } } "SourcePath" = "8:Microsoft.VisualStudio.Shell.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_F11D54EE0EEA4BF59B52E621630B6A2E" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" "ReadOnly" = "11:FALSE" "Hidden" = "11:FALSE" "System" = "11:FALSE" |
︙ | ︙ | |||
1054 1055 1056 1057 1058 1059 1060 | "SharedLegacy" = "11:FALSE" "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:TRUE" "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } | | | | | 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 | "SharedLegacy" = "11:FALSE" "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:TRUE" "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C76942DD342D4470B6F652A1C8AB6AC8" { "SourcePath" = "8:..\\..\\bin\\CompactFramework\\SQLite.Interop.061.DLL" "TargetName" = "8:SQLite.Interop.061.DLL" "Tag" = "8:" "Folder" = "8:_10C8E86E2EEF451BB40F774C35C5466F" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" "ReadOnly" = "11:FALSE" "Hidden" = "11:FALSE" |
︙ | ︙ | |||
1098 1099 1100 1101 1102 1103 1104 | "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CA378DC7967442BAA821EDC0F78B57B7" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" | | | 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 | "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CA378DC7967442BAA821EDC0F78B57B7" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" "AssemblyAsmDisplayName" = "8:System.Data.SQLite, Version=1.0.61.0, Culture=neutral, PublicKeyToken=1fdb50b1b62b4c84, processorArchitecture=MSIL" "ScatterAssemblies" { "_CA378DC7967442BAA821EDC0F78B57B7" { "Name" = "8:System.Data.SQLite.dll" "Attributes" = "3:512" } |
︙ | ︙ | |||
1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 | "Permanent" = "11:FALSE" "SharedLegacy" = "11:FALSE" "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E6DB5A9B08AC4645A19C948BBFDD0348" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:TRUE" "AssemblyAsmDisplayName" = "8:Microsoft.VisualStudio.Shell.Interop, Version=7.1.40304.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" "ScatterAssemblies" | > > > > > > > > > > > > > > > > > > > > | 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 1300 1301 | "Permanent" = "11:FALSE" "SharedLegacy" = "11:FALSE" "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DE6E9C1CBC3E4D81B6B124203180BC82" { "SourcePath" = "8:..\\..\\bin\\CompactFramework\\SQLite.Interop.061.lib" "TargetName" = "8:SQLite.Interop.061.lib" "Tag" = "8:" "Folder" = "8:_10C8E86E2EEF451BB40F774C35C5466F" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" "ReadOnly" = "11:FALSE" "Hidden" = "11:FALSE" "System" = "11:FALSE" "Permanent" = "11:FALSE" "SharedLegacy" = "11:FALSE" "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E6DB5A9B08AC4645A19C948BBFDD0348" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:TRUE" "AssemblyAsmDisplayName" = "8:Microsoft.VisualStudio.Shell.Interop, Version=7.1.40304.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" "ScatterAssemblies" |
︙ | ︙ | |||
1289 1290 1291 1292 1293 1294 1295 | "SharedLegacy" = "11:FALSE" "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:TRUE" "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } | < < < < < < < < < < < < < < < < < < < < | | 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 | "SharedLegacy" = "11:FALSE" "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:TRUE" "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F320FBAE871DA320178BEEA242900CC7" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" "AssemblyAsmDisplayName" = "8:System.Data.SQLite, Version=1.0.61.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=x86" "ScatterAssemblies" { "_F320FBAE871DA320178BEEA242900CC7" { "Name" = "8:System.Data.SQLite.DLL" "Attributes" = "3:512" } |
︙ | ︙ | |||
1473 1474 1475 1476 1477 1478 1479 | "LangId" = "3:1033" "RequiresElevation" = "11:FALSE" } "Product" { "Name" = "8:Microsoft Visual Studio" "ProductName" = "8:SQLite ADO.NET 2.0 Provider" | | | | | 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 | "LangId" = "3:1033" "RequiresElevation" = "11:FALSE" } "Product" { "Name" = "8:Microsoft Visual Studio" "ProductName" = "8:SQLite ADO.NET 2.0 Provider" "ProductCode" = "8:{20FCD203-B581-4BA1-B273-CF3D2622F433}" "PackageCode" = "8:{0A551EE9-F700-4A36-86E5-9F8D3476788C}" "UpgradeCode" = "8:{78329A82-AFB1-453B-AF00-D46AC911DA89}" "RestartWWWService" = "11:FALSE" "RemovePreviousVersions" = "11:TRUE" "DetectNewerInstalledVersion" = "11:TRUE" "InstallAllUsers" = "11:TRUE" "ProductVersion" = "8:1.061.0" "Manufacturer" = "8:Phoenix Software Solutions, LLC" "ARPHELPTELEPHONE" = "8:" "ARPHELPLINK" = "8:http://sqlite.phxsoftware.com" "Title" = "8:SQLite ADO.NET 2.0 Provider" "Subject" = "8:" "ARPCONTACT" = "8:Phoenix Software Solutions, LLC" "Keywords" = "8:" |
︙ | ︙ |