Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | :-) (CVS 137) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
5f6559ee7b82eb18078ddbb14d815d0a |
User & Date: | drh 2000-08-22 13:27:22.000 |
Context
2000-08-22
| ||
13:40 | :-) (CVS 138) (check-in: c6b71d9b4b user: drh tags: trunk) | |
13:27 | :-) (CVS 137) (check-in: 5f6559ee7b user: drh tags: trunk) | |
2000-08-20
| ||
11:42 | bug fix in lemon (CVS 136) (check-in: 6f4c080739 user: drh tags: trunk) | |
Changes
Changes to VERSION.
|
| | | 1 | 1.0.2 |
Changes to src/shell.c.
︙ | ︙ | |||
20 21 22 23 24 25 26 | ** drh@hwaci.com ** http://www.hwaci.com/drh/ ** ************************************************************************* ** This file contains code to implement the "sqlite" command line ** utility for accessing SQLite databases. ** | | | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | ** drh@hwaci.com ** http://www.hwaci.com/drh/ ** ************************************************************************* ** This file contains code to implement the "sqlite" command line ** utility for accessing SQLite databases. ** ** $Id: shell.c,v 1.22 2000/08/22 13:27:22 drh Exp $ */ #include <stdlib.h> #include <string.h> #include <stdio.h> #include "sqlite.h" #include <unistd.h> #include <ctype.h> |
︙ | ︙ | |||
664 665 666 667 668 669 670 | if( zErrMsg ){ fprintf(stderr,"Unable to open database \"%s\": %s\n", argv[1],zErrMsg); }else{ fprintf(stderr,"Unable to open database %s\n", argv[1]); } exit(1); }else{ | | | 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 | if( zErrMsg ){ fprintf(stderr,"Unable to open database \"%s\": %s\n", argv[1],zErrMsg); }else{ fprintf(stderr,"Unable to open database %s\n", argv[1]); } exit(1); }else{ fprintf(stderr,"Database \"%s\" opened READ ONLY!\n", argv[1]); } } data.out = stdout; if( argc==3 ){ if( sqlite_exec(db, argv[2], callback, &data, &zErrMsg)!=0 && zErrMsg!=0 ){ fprintf(stderr,"SQL error: %s\n", zErrMsg); exit(1); |
︙ | ︙ |
Changes to www/changes.tcl.
︙ | ︙ | |||
12 13 14 15 16 17 18 19 20 21 22 23 24 25 | } proc chng {date desc} { puts "<DT><B>$date</B></DT>" puts "<DD><P><UL>$desc</UL></P></DD>" } chng {2000 Aug 18 (Version 1.0.1)} { <li>Fix a bug in the configure script.</li> <li>Minor revisions to the website.</li> } chng {2000 Aug 17 (Version 1.0)} { | > > > > > | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | } proc chng {date desc} { puts "<DT><B>$date</B></DT>" puts "<DD><P><UL>$desc</UL></P></DD>" } chng {2000 Aug 22 (Version 1.0.2)} { <li>In the sqlite shell, print the "Database opened READ ONLY" message to stderr instead of stdout.</li> } chng {2000 Aug 18 (Version 1.0.1)} { <li>Fix a bug in the configure script.</li> <li>Minor revisions to the website.</li> } chng {2000 Aug 17 (Version 1.0)} { |
︙ | ︙ |