Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix compilation issue on the .NET Compact Framework. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk | lkg |
Files: | files | file ages | folders |
SHA1: |
f414bdbbb8ba6a2afde52f6020eb2932 |
User & Date: | mistachkin 2013-09-14 04:50:25.731 |
Context
2013-09-16
| ||
21:31 | Improve readability of the Win32 RC file. check-in: 15399fa9b6 user: mistachkin tags: trunk | |
2013-09-14
| ||
04:50 | Fix compilation issue on the .NET Compact Framework. check-in: f414bdbbb8 user: mistachkin tags: trunk, lkg | |
00:31 | Make sure the database cannot be changed by a query when the CommandBehavior.SchemaOnly flag is used. Fix for [f8dbab8baf]. check-in: 0474af7d87 user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite/SQLiteConnection.cs.
︙ | ︙ | |||
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | /// The data reader associated with this event, if any. /// </summary> public readonly IDataReader DataReader; /// <summary> /// The critical handle associated with this event, if any. /// </summary> public readonly CriticalHandle CriticalHandle; /// <summary> /// Command or message text associated with this event, if any. /// </summary> public readonly string Text; /// <summary> | > > > > | 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | /// The data reader associated with this event, if any. /// </summary> public readonly IDataReader DataReader; /// <summary> /// The critical handle associated with this event, if any. /// </summary> #if !PLATFORM_COMPACTFRAMEWORK public readonly CriticalHandle CriticalHandle; #else public readonly object CriticalHandle; #endif /// <summary> /// Command or message text associated with this event, if any. /// </summary> public readonly string Text; /// <summary> |
︙ | ︙ | |||
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | /// <param name="data">The extra data, if any.</param> internal ConnectionEventArgs( SQLiteConnectionEventType eventType, StateChangeEventArgs eventArgs, IDbTransaction transaction, IDbCommand command, IDataReader dataReader, CriticalHandle criticalHandle, string text, object data ) { EventType = eventType; EventArgs = eventArgs; Transaction = transaction; | > > > > | 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | /// <param name="data">The extra data, if any.</param> internal ConnectionEventArgs( SQLiteConnectionEventType eventType, StateChangeEventArgs eventArgs, IDbTransaction transaction, IDbCommand command, IDataReader dataReader, #if !PLATFORM_COMPACTFRAMEWORK CriticalHandle criticalHandle, #else object criticalHandle, #endif string text, object data ) { EventType = eventType; EventArgs = eventArgs; Transaction = transaction; |
︙ | ︙ |