Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | :-) (CVS 138) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
c6b71d9b4b09243401072eaa278fd1b9 |
User & Date: | drh 2000-08-22 13:40:19.000 |
Context
2000-08-22
| ||
13:40 | :-) (CVS 139) (check-in: 67e2da38c3 user: drh tags: trunk) | |
13:40 | :-) (CVS 138) (check-in: c6b71d9b4b user: drh tags: trunk) | |
13:27 | :-) (CVS 137) (check-in: 5f6559ee7b user: drh tags: trunk) | |
Changes
Changes to Makefile.in.
︙ | ︙ | |||
123 124 125 126 127 128 129 | parse.h: parse.c parse.c: $(TOP)/src/parse.y lemon cp $(TOP)/src/parse.y . ./lemon parse.y | | | | 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 | parse.h: parse.c parse.c: $(TOP)/src/parse.y lemon cp $(TOP)/src/parse.y . ./lemon parse.y sqlite.h: $(TOP)/src/sqlite.h.in sed -e s/--VERS--/`cat ${TOP}/VERSION`/ $(TOP)/src/sqlite.h.in >sqlite.h tokenize.o: $(TOP)/src/tokenize.c $(HDR) $(TCC) $(GDBM_FLAGS) -c $(TOP)/src/tokenize.c util.o: $(TOP)/src/util.c $(HDR) $(TCC) $(GDBM_FLAGS) -c $(TOP)/src/util.c |
︙ | ︙ |
Changes to src/main.c.
︙ | ︙ | |||
22 23 24 25 26 27 28 | ** ************************************************************************* ** Main file for the SQLite library. The routines in this file ** implement the programmer interface to the library. Routines in ** other files are for internal use by SQLite and should not be ** accessed by users of the library. ** | | | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | ** ************************************************************************* ** Main file for the SQLite library. The routines in this file ** implement the programmer interface to the library. Routines in ** other files are for internal use by SQLite and should not be ** accessed by users of the library. ** ** $Id: main.c,v 1.17 2000/08/22 13:40:19 drh Exp $ */ #include "sqliteInt.h" /* ** This is the callback routine for the code that initializes the ** database. Each callback contains text of a CREATE TABLE or ** CREATE INDEX statement that must be parsed to yield the internal |
︙ | ︙ | |||
180 181 182 183 184 185 186 187 188 189 190 191 192 193 | db->flags |= SQLITE_Initialized; }else{ sqliteStrRealloc(pzErrMsg); } return rc; } /* ** Open a new SQLite database. Construct an "sqlite" structure to define ** the state of this database and return a pointer to that structure. ** ** An attempt is made to initialize the in-memory data structures that ** hold the database schema. But if this fails (because the schema file ** is locked) then that step is deferred until the first call to | > > > > > | 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 | db->flags |= SQLITE_Initialized; }else{ sqliteStrRealloc(pzErrMsg); } return rc; } /* ** The version of the library */ const char sqlite_version[] = SQLITE_VERSION_STRING; /* ** Open a new SQLite database. Construct an "sqlite" structure to define ** the state of this database and return a pointer to that structure. ** ** An attempt is made to initialize the in-memory data structures that ** hold the database schema. But if this fails (because the schema file ** is locked) then that step is deferred until the first call to |
︙ | ︙ |
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.23 2000/08/22 13:40:19 drh Exp $ */ #include <stdlib.h> #include <string.h> #include <stdio.h> #include "sqlite.h" #include <unistd.h> #include <ctype.h> |
︙ | ︙ | |||
680 681 682 683 684 685 686 | }else{ char *zLine; char *zSql = 0; int nSql = 0; int istty = isatty(0); if( istty ){ printf( | > | > | 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 | }else{ char *zLine; char *zSql = 0; int nSql = 0; int istty = isatty(0); if( istty ){ printf( "SQLite version %s\n" "Enter \".help\" for instructions\n", sqlite_version ); } while( (zLine = one_input_line(zSql, istty))!=0 ){ if( zLine && zLine[0]=='.' ){ do_meta_command(zLine, db, &data); free(zLine); continue; |
︙ | ︙ |
Changes to src/sqlite.h.in.
︙ | ︙ | |||
20 21 22 23 24 25 26 | ** drh@hwaci.com ** http://www.hwaci.com/drh/ ** ************************************************************************* ** This header file defines the interface that the sqlite library ** presents to client programs. ** | | | | | > > > > > > | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | ** drh@hwaci.com ** http://www.hwaci.com/drh/ ** ************************************************************************* ** This header file defines the interface that the sqlite library ** presents to client programs. ** ** @(#) $Id: sqlite.h.in,v 1.2 2000/08/22 13:40:20 drh Exp $ */ #ifndef _SQLITE_H_ #define _SQLITE_H_ /* ** The version of the SQLite library. */ #define SQLITE_VERSION "--VERS--" /* ** The version string is also compiled into the library so that a program ** can check to make sure that the lib*.a file and the *.h file are from ** the same version. */ extern const char sqlite_version[]; /* ** Each open sqlite database is represented by an instance of the ** following opaque structure. */ typedef struct sqlite sqlite; |
︙ | ︙ |
Changes to www/c_interface.tcl.
1 2 3 | # # Run this Tcl script to generate the sqlite.html file. # | | | 1 2 3 4 5 6 7 8 9 10 11 | # # Run this Tcl script to generate the sqlite.html file. # set rcsid {$Id: c_interface.tcl,v 1.7 2000/08/22 13:40:20 drh Exp $} puts {<html> <head> <title>The C language interface to the SQLite library</title> </head> <body bgcolor=white> <h1 align=center> |
︙ | ︙ | |||
43 44 45 46 47 48 49 50 51 52 53 54 55 56 | ); int sqlite_complete(const char *sql); void sqlite_busy_handler(sqlite*, int (*)(void*,const char*,int), void*); void sqlite_busy_timeout(sqlite*, int ms); #define SQLITE_OK 0 /* Successful result */ #define SQLITE_INTERNAL 1 /* An internal logic error in SQLite */ #define SQLITE_ERROR 2 /* SQL error or missing database */ #define SQLITE_PERM 3 /* Access permission denied */ #define SQLITE_ABORT 4 /* Callback routine requested an abort */ #define SQLITE_BUSY 5 /* One or more database files are locked */ | > > | 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | ); int sqlite_complete(const char *sql); void sqlite_busy_handler(sqlite*, int (*)(void*,const char*,int), void*); void sqlite_busy_timeout(sqlite*, int ms); const char sqlite_version[]; #define SQLITE_OK 0 /* Successful result */ #define SQLITE_INTERNAL 1 /* An internal logic error in SQLite */ #define SQLITE_ERROR 2 /* SQL error or missing database */ #define SQLITE_PERM 3 /* Access permission denied */ #define SQLITE_ABORT 4 /* Callback routine requested an abort */ #define SQLITE_BUSY 5 /* One or more database files are locked */ |
︙ | ︙ | |||
226 227 228 229 230 231 232 233 234 235 236 237 238 239 | line of input is received, <b>sqlite</b> calls <b>sqlite_complete()</b> on all input in its buffer. If <b>sqlite_complete()</b> returns true, then <b>sqlite_exec()</b> is called and the input buffer is reset. If <b>sqlite_complete()</b> returns false, then the prompt is changed to the continuation prompt and another line of text is read and added to the input buffer.</p> <h2>Changing the libraries reponse to locked files</h2> <p>The GDBM library supports database locks at the file level. If a GDBM database file is opened for reading, then that same file cannot be reopened for writing until all readers have closed the file. If a GDBM file is open for writing, then the file cannot be reopened for reading or writing until it is closed.</p> | > > > > > > > > > > | 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 | line of input is received, <b>sqlite</b> calls <b>sqlite_complete()</b> on all input in its buffer. If <b>sqlite_complete()</b> returns true, then <b>sqlite_exec()</b> is called and the input buffer is reset. If <b>sqlite_complete()</b> returns false, then the prompt is changed to the continuation prompt and another line of text is read and added to the input buffer.</p> <h2>Library version string</h2> <p>The SQLite library exports the string constant named <b>sqlite_version</b> which contains the version number of the library. The header file contains a macro SQLITE_VERSION with the same information. If desired, a program can compare the SQLITE_VERSION macro against the <b>sqlite_version</b> string constant to verify that the version number of the header file and the library match.</p> <h2>Changing the libraries reponse to locked files</h2> <p>The GDBM library supports database locks at the file level. If a GDBM database file is opened for reading, then that same file cannot be reopened for writing until all readers have closed the file. If a GDBM file is open for writing, then the file cannot be reopened for reading or writing until it is closed.</p> |
︙ | ︙ |