Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | 1.0.33.0 |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | sourceforge |
Files: | files | file ages | folders |
SHA1: |
c0a09f261908c1207f73f67c655eda11 |
User & Date: | rmsimpson 2006-08-13 16:00:24.000 |
Context
2006-08-13
| ||
16:22 | 1.0.33.0 check-in: 41bcfd12d5 user: rmsimpson tags: sourceforge | |
16:00 | 1.0.33.0 check-in: c0a09f2619 user: rmsimpson tags: sourceforge | |
15:55 | 3.3.7 codemerge check-in: d91f7243f3 user: rmsimpson tags: sourceforge | |
Changes
Changes to System.Data.SQLite/SQLiteConnection.cs.
︙ | ︙ | |||
446 447 448 449 450 451 452 | if (_sql != null) { int x = _commandList.Count; for (int n = 0; n < x; n++) { _commandList[n].ClearCommands(); } | < | 446 447 448 449 450 451 452 453 454 455 456 457 458 459 | if (_sql != null) { int x = _commandList.Count; for (int n = 0; n < x; n++) { _commandList[n].ClearCommands(); } _sql.Close(); _sql = null; } OnStateChange(ConnectionState.Closed); } |
︙ | ︙ |
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 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 SQLite Data Provider<br> Version 1.0.33.0 August 14, 2006<br> Using SQLite 3.3.7<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> <br> The latest version can be downloaded <a href="http://sourceforge.net/projects/sqlite-dotnet2"> here</a> <br> <br> |
︙ | ︙ | |||
115 116 117 118 119 120 121 122 123 124 125 126 127 128 | 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.32.0 - August 6, 2006</b></p> <ul> <li>Added AllowPartiallyTrustedCallers attribute to the assembly</li><li>Added the missing "nchar" type</li> <li>Added support for binary Guid's. Guids are now stored as binary by default when using parameterized queries. Text guids are still fully supported.</li> <li>Fixed a TransactionScope() error that caused the transaction not to be completed.</li> <li>Enhanced parameter names so that if they are added to the Parameters collection | > > > > > > | 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 | 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.33.0 - August 14, 2006</b></p> <ul> <li>Fixed a bug in SQLiteConnection that caused it to "forget" about commands bound to it and occasionally throw an error when a database is closed and opened repeatedly. </li> </ul> <p><b>1.0.32.0 - August 6, 2006</b></p> <ul> <li>Added AllowPartiallyTrustedCallers attribute to the assembly</li><li>Added the missing "nchar" type</li> <li>Added support for binary Guid's. Guids are now stored as binary by default when using parameterized queries. Text guids are still fully supported.</li> <li>Fixed a TransactionScope() error that caused the transaction not to be completed.</li> <li>Enhanced parameter names so that if they are added to the Parameters collection |
︙ | ︙ |