Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Minor correction to the fn_UnquoteVariable batch tool sub-routine. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
b81aec8b262d1d546d3725a2d55dbe23 |
User & Date: | mistachkin 2013-08-21 04:39:09.458 |
Context
2013-08-23
| ||
06:22 | Update SQLite core library to the latest trunk code. Bump all versions to 1.0.89.0. Update version history docs. check-in: 92f420b32c user: mistachkin tags: trunk | |
2013-08-21
| ||
04:39 | Minor correction to the fn_UnquoteVariable batch tool sub-routine. check-in: b81aec8b26 user: mistachkin tags: trunk | |
2013-08-13
| ||
20:47 | Check the result of sqlite3_column_name against NULL. Also, return false for the SQLiteParameterCollection.IsSynchronized property because it is not thread-safe. These issues were reported via the mailing list. check-in: 7a1efd7d40 user: mistachkin tags: trunk | |
Changes
Changes to Setup/build.bat.
︙ | ︙ | |||
264 265 266 267 268 269 270 | ECHO Could not restore directory. GOTO errors ) GOTO no_errors :fn_UnquoteVariable | < > | 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 | ECHO Could not restore directory. GOTO errors ) GOTO no_errors :fn_UnquoteVariable IF NOT DEFINED %1 GOTO :EOF SETLOCAL SET __ECHO_CMD=ECHO %%%1%% FOR /F "delims=" %%V IN ('%__ECHO_CMD%') DO ( SET VALUE=%%V ) SET VALUE=%VALUE:"=% REM " ENDLOCAL && SET %1=%VALUE% |
︙ | ︙ |
Changes to Setup/release.bat.
︙ | ︙ | |||
207 208 209 210 211 212 213 | ) ENDLOCAL && ( SET %1=%VALUE% ) GOTO :EOF :fn_UnquoteVariable | < > | 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 | ) ENDLOCAL && ( SET %1=%VALUE% ) GOTO :EOF :fn_UnquoteVariable IF NOT DEFINED %1 GOTO :EOF SETLOCAL SET __ECHO_CMD=ECHO %%%1%% FOR /F "delims=" %%V IN ('%__ECHO_CMD%') DO ( SET VALUE=%%V ) SET VALUE=%VALUE:"=% REM " ENDLOCAL && SET %1=%VALUE% |
︙ | ︙ |