Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix typos in comments. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
4194e0732339c87e5d83d378f69bd4d5 |
User & Date: | mistachkin 2020-03-04 03:31:29.066 |
Context
2020-05-24
| ||
00:36 | Get this branch up-to-date with most trunk changes. check-in: bf714af93b user: mistachkin tags: branch-1.0.112 | |
2020-03-05
| ||
00:36 | More work on tests. Rename the new environment variable. check-in: f6f755c1ee user: mistachkin tags: trunk | |
2020-03-04
| ||
03:31 | Fix typos in comments. check-in: 4194e07323 user: mistachkin tags: trunk | |
03:25 | When using the (unsupported) legacy CryptoAPI based codec, skip encrypting page #1 because that can lead to database corruption and other malfunctions. check-in: e877217109 user: mistachkin tags: trunk | |
Changes
Changes to Doc/Extra/Provider/environment.html.
︙ | ︙ | |||
264 265 266 267 268 269 270 | of the current process (e.g. a 32-bit x86 application running on a 64-bit x64 operating system should have the value "x86"). </td> </tr> <tr valign="top"> <td>SQLite_EncryptPage1</td> <td>If this environment variable is set [to anything], page #1 of | | | | 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 | of the current process (e.g. a 32-bit x86 application running on a 64-bit x64 operating system should have the value "x86"). </td> </tr> <tr valign="top"> <td>SQLite_EncryptPage1</td> <td>If this environment variable is set [to anything], page #1 of database files encrypted using the (unsupported) legacy CryptoAPI codec will be encrypted. This was the default behavior prior to release 1.0.113.0; however, it is now disabled (by default) as it can cause corruption and/or other malfunctions in some circumstances. Please do not use this environment variable unless it is absolutely necessary for your specific use case.</td> </tr> <tr valign="top"> <td>SQLite_ForceLogPrepare</td> |
︙ | ︙ |
Changes to System.Data.SQLite/Configurations/System.Data.SQLite.dll.config.
︙ | ︙ | |||
253 254 255 256 257 258 259 | the value "x86"). --> <!-- <add key="PROCESSOR_ARCHITECTURE" value="%PROCESSOR_ARCHITECTURE%" /> --> <!-- | | | | | | | | | | 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 | the value "x86"). --> <!-- <add key="PROCESSOR_ARCHITECTURE" value="%PROCESSOR_ARCHITECTURE%" /> --> <!-- NOTE: If this environment variable is set [to anything], page #1 of database files encrypted using the (unsupported) legacy CryptoAPI codec will be encrypted. This was the default behavior prior to release 1.0.113.0; however, it is now disabled (by default) as it can cause corruption and/or other malfunctions in some circumstances. Please do not use this environment variable unless it is absolutely necessary for your specific use case. NOTE: Since this environment variable is read from the native interop assembly, it cannot be set via this configuration file. It can only be set within the process environment. --> <!-- <add key="SQLite_EncryptPage1" value="1" /> |
︙ | ︙ |