Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add missing #ifdef. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | sqlar-shell-support |
Files: | files | file ages | folders |
SHA3-256: |
a0e18aea0950f5ebdf4112f826ff64d2 |
User & Date: | mistachkin 2018-01-05 00:53:03.495 |
Context
2018-01-05
| ||
01:00 | Enhance the 'zlib' build target for MSVC. (check-in: 0bc3b76ec9 user: mistachkin tags: sqlar-shell-support) | |
00:53 | Add missing #ifdef. (check-in: a0e18aea09 user: mistachkin tags: sqlar-shell-support) | |
2018-01-04
| ||
23:49 | In the 'fileio' extension code for Win32, use the FILE_FLAG_BACKUP_SEMANTICS flag when setting the file times, just in case the file is actually a directory. (check-in: 4f34440600 user: mistachkin tags: sqlar-shell-support) | |
Changes
Changes to src/shell.c.in.
︙ | ︙ | |||
4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 | raw_printf(stderr, "cannot open file: %s (%s)\n", cmd.zFile, sqlite3_errmsg(db) ); sqlite3_close(db); return rc; } sqlite3_fileio_init(db, 0, 0); sqlite3_sqlar_init(db, 0, 0); }else{ db = pState->db; } switch( cmd.eCmd ){ case AR_CMD_CREATE: rc = arCreateCommand(pState, db, &cmd); | > > | 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 | raw_printf(stderr, "cannot open file: %s (%s)\n", cmd.zFile, sqlite3_errmsg(db) ); sqlite3_close(db); return rc; } sqlite3_fileio_init(db, 0, 0); #ifdef SQLITE_HAVE_ZLIB sqlite3_sqlar_init(db, 0, 0); #endif }else{ db = pState->db; } switch( cmd.eCmd ){ case AR_CMD_CREATE: rc = arCreateCommand(pState, db, &cmd); |
︙ | ︙ |