Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | 1.0.36.0 |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | sourceforge |
Files: | files | file ages | folders |
SHA1: |
6a7dae8af35b37657f75e0b41c4241f6 |
User & Date: | rmsimpson 2006-10-14 18:01:38.000 |
Context
2006-10-14
| ||
18:03 | Scan PE headers for CE problems check-in: 06c74a1584 user: rmsimpson tags: sourceforge | |
18:01 | 1.0.36.0 check-in: 6a7dae8af3 user: rmsimpson tags: sourceforge | |
02:28 | 1.0.36.0 check-in: d3361e927b user: rmsimpson tags: sourceforge | |
Changes
Changes to SQLite.Interop/crypt.c.
︙ | |||
38 39 40 41 42 43 44 | 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | - + - - - + - | // Create a cryptographic context. Use the enhanced provider because it is available on // most platforms static BOOL InitializeProvider() { if (g_hProvider) return TRUE; |
︙ |
Changes to SQLite.Interop/interop.c.
1 2 3 4 5 6 7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | + - - - - + + + + + | #include "src/sqliteint.h" #include "src\os.h" #include <tchar.h> #if NDEBUG #if _WIN32_WCE #include "merge.h" |
︙ |
Changes to SQLite.Interop/merge.h.
1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | - + - + - | // This code was automatically generated from assembly |
︙ |
Changes to SQLite.Interop/merge_full.h.
1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | - + - + - | // This code was automatically generated from assembly |
︙ |
Changes to System.Data.SQLite/SQLiteEnlistment.cs.
︙ | |||
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | + + + + + + + + + - - - + - - | { _transaction = cnn.BeginTransaction(); _scope = scope; _disposeConnection = false; _scope.EnlistVolatile(this, System.Transactions.EnlistmentOptions.None); } private void Cleanup(SQLiteConnection cnn) { if (_disposeConnection) cnn.Dispose(); _transaction = null; _scope = null; } #region IEnlistmentNotification Members public void Commit(Enlistment enlistment) { SQLiteConnection cnn = _transaction.Connection; cnn._enlistment = null; try { _transaction.IsValid(); _transaction.Connection._transactionLevel = 1; _transaction.Commit(); enlistment.Done(); } finally { |
︙ | |||
80 81 82 83 84 85 86 | 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | - - - + - - | try { _transaction.Rollback(); enlistment.Done(); } finally { |
Changes to readme.htm.
1 2 3 4 5 6 7 | 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 SQLite Data Provider<br> |
︙ | |||
116 117 118 119 120 121 122 123 124 125 126 127 128 129 | 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 | + + + + + + | The SQLite3 source code is compiled directly from the SQLite.org release sources. All builds of sqlite after 3.2.8 have included support for Windows CE. Additionally, just one minor modification is made to pager.c, that modification is made automatically by the fixsource.vbs file when the VS2005 solution is compiled.</p> <p></p> <p> <b>Version History</b></p> <p><b>1.0.36.0 - October 14, 2006</b></p> <ul> <li>Fixed another bug retrieving data types when UseUtf16Encoding is true. Side-effect of further merging the common code between the two base classes.</li><li>Fixed a bug with System.Transactions whereby a connection closed during a transaction scope cannot be rolled back nor committed.</li> <li>Implemented a workaround for a Compact Framework issue regarding strong-named assemblies containing a PE section with a raw size less than the virtual size. </li> </ul> <p><b>1.0.35.1 - September 12, 2006</b></p> <ul> <li>Fixed the TYPES keyword to work when UseUTF16Encoding is true.</li> <li>Fix another bug revealed in 1.0.35.0 regarding infinite loops when the 2nd or subsequent statements of a semi-colon separated command cannot be parsed.</li> <li>Updated the help documentation. </li> </ul> <p><b>1.0.35.0 - September 10, 2006</b></p> |
︙ |