Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | 1.08 |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | sourceforge |
Files: | files | file ages | folders |
SHA1: |
40c497decfe24b5178ddd60c7528b8a0 |
User & Date: | rmsimpson 2005-03-11 21:39:50.000 |
Context
2005-03-11
| ||
23:16 | 1.08 check-in: dba40334e2 user: rmsimpson tags: sourceforge | |
21:39 | 1.08 check-in: 40c497decf user: rmsimpson tags: sourceforge | |
15:03 | 3.14 code merge check-in: 1eef5ec724 user: rmsimpson tags: sourceforge | |
Changes
Changes to System.Data.SQLite/AssemblyInfo.cs.
︙ | |||
24 25 26 27 28 29 30 | 24 25 26 27 28 29 30 31 | - + | // 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: |
Changes to System.Data.SQLite/SQLiteCommandBuilder.cs.
︙ | |||
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | + + | return "?"; } #if !PLATFORM_COMPACTFRAMEWORK /// <summary> /// Obsolete /// </summary> #if !BETA1 [Obsolete] #endif protected override DbProviderFactory ProviderFactory { get { return new SQLiteFactory(); } } |
︙ |
Changes to System.Data.SQLite/SQLiteConnection.cs.
︙ | |||
106 107 108 109 110 111 112 | 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 | - + | /// </summary> internal SQLiteBase _sql; /// <summary> /// Commands associated with this connection /// </summary> internal List<SQLiteCommand> _commandList; |
︙ | |||
165 166 167 168 169 170 171 | 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 | - + | _sql.Execute(String.Format("ATTACH DATABASE '{0}' AS [{1}]", row[1], row[0])); } } } } } |
︙ | |||
212 213 214 215 216 217 218 | 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 | - + | } internal void OnStateChange(ConnectionState newState) { ConnectionState oldState = _connectionState; _connectionState = newState; |
︙ |
Changes to System.Data.SQLite/SQLiteFunction.cs.
︙ | |||
69 70 71 72 73 74 75 | 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | - + - + | /// be automatically freed for you (and Dispose() called if the item supports IDisposable) when the statement completes. /// </remarks> public abstract class SQLiteFunction : IDisposable { private SQLiteBase _base; private int _interopCookie; |
︙ | |||
365 366 367 368 369 370 371 | 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 | - + | /// </summary> public void Dispose() { Dispose(true); IDisposable disp; |
︙ | |||
387 388 389 390 391 392 393 394 395 396 397 398 399 400 | 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 | + | _CompareFunc = null; _base = null; _contextDataList = null; GC.SuppressFinalize(this); } #if !PLATFORM_COMPACTFRAMEWORK /// <summary> /// Using reflection, enumerate all assemblies in the current appdomain looking for classes that /// have a SQLiteFunctionAttribute attribute, and registering them accordingly. /// </summary> static SQLiteFunction() { SQLiteFunctionAttribute at; |
︙ | |||
417 418 419 420 421 422 423 | 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 | - + | at.InstanceType = arTypes[x]; _registeredFunctions.Add(at); } } } } } |
︙ | |||
439 440 441 442 443 444 445 446 447 448 449 450 451 452 | 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 | + | if (at != null) { at.InstanceType = typ; _registeredFunctions.Add(at); } } } #endif /// <summary> /// Called by SQLiteBase derived classes, this function binds all user-defined functions to a connection. /// It is done this way so that all user-defined functions will access the database using the same encoding scheme /// as the connection (UTF-8 or UTF-16). /// </summary> /// <remarks> |
︙ |
Changes to System.Data.SQLite/SQLiteParameterCollection.cs.
︙ | |||
225 226 227 228 229 230 231 | 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 | - + | /// /// </summary> public override int Count { get { return _parameterList.Count; } } |
︙ | |||
312 313 314 315 316 317 318 | 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 | - + | /// <param name="index"></param> public override void RemoveAt(int index) { _unboundFlag = true; _parameterList.RemoveAt(index); } |
︙ |
Changes to bin/SQLite.Interop.dll.
cannot compute difference between binary files
Changes to bin/System.Data.SQLite.dll.
cannot compute difference between binary files
Changes to bin/test.exe.
cannot compute difference between binary files