[Kde-cygwin-cvs] CVS: qt-3/src/3rdparty/sqlite attach.c,1.1.1.4,1.2 auth.c,1.1.1.4,1.2 btree.c,1.1.1
Status: Inactive
Brought to you by:
habacker
Update of /cvsroot/kde-cygwin/qt-3/src/3rdparty/sqlite In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26950/src/3rdparty/sqlite Modified Files: attach.c auth.c btree.c btree.h btree_rb.c build.c copy.c date.c delete.c expr.c func.c hash.c hash.h insert.c main.c pager.c pager.h pragma.c random.c select.c shell.c sqlite.h sqliteInt.h tokenize.c update.c util.c vacuum.c vdbe.c vdbe.h where.c Log Message: st qt3.3.5 patch - I made the smae mistake like 3.3.4 but don't know what is going wrong there. Seems like our cvs is messed up :( ttt: ---------------------------------------------------------------------- Index: attach.c =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/3rdparty/sqlite/attach.c,v retrieving revision 1.1.1.4 retrieving revision 1.2 diff -u -r1.1.1.4 -r1.2 --- attach.c 22 Sep 2005 12:56:45 -0000 1.1.1.4 +++ attach.c 23 Sep 2005 09:40:29 -0000 1.2 @@ -11,7 +11,7 @@ ************************************************************************* ** This file contains code used to implement the ATTACH and DETACH commands. ** -** $Id$ +** */ #include "sqliteInt.h" Index: auth.c =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/3rdparty/sqlite/auth.c,v retrieving revision 1.1.1.4 retrieving revision 1.2 diff -u -r1.1.1.4 -r1.2 --- auth.c 22 Sep 2005 12:56:47 -0000 1.1.1.4 +++ auth.c 23 Sep 2005 09:40:29 -0000 1.2 @@ -14,7 +14,7 @@ ** systems that do not need this facility may omit it by recompiling ** the library with -DSQLITE_OMIT_AUTHORIZATION=1 ** -** $Id$ +** */ #include "sqliteInt.h" Index: btree.c =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/3rdparty/sqlite/btree.c,v retrieving revision 1.1.1.4 retrieving revision 1.2 diff -u -r1.1.1.4 -r1.2 --- btree.c 22 Sep 2005 12:56:58 -0000 1.1.1.4 +++ btree.c 23 Sep 2005 09:40:29 -0000 1.2 @@ -9,7 +9,7 @@ ** May you share freely, never taking more than you give. ** ************************************************************************* -** $Id$ +** ** ** This file implements a external (disk-based) database using BTrees. ** For a detailed discussion of BTrees, refer to Index: btree.h =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/3rdparty/sqlite/btree.h,v retrieving revision 1.1.1.4 retrieving revision 1.2 diff -u -r1.1.1.4 -r1.2 --- btree.h 22 Sep 2005 12:56:58 -0000 1.1.1.4 +++ btree.h 23 Sep 2005 09:40:29 -0000 1.2 @@ -13,7 +13,7 @@ ** subsystem. See comments in the source code for a detailed description ** of what each interface routine does. ** -** @(#) $Id$ +** @(#) */ #ifndef _BTREE_H_ #define _BTREE_H_ Index: btree_rb.c =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/3rdparty/sqlite/btree_rb.c,v retrieving revision 1.1.1.4 retrieving revision 1.2 diff -u -r1.1.1.4 -r1.2 --- btree_rb.c 22 Sep 2005 12:56:47 -0000 1.1.1.4 +++ btree_rb.c 23 Sep 2005 09:40:29 -0000 1.2 @@ -9,7 +9,7 @@ ** May you share freely, never taking more than you give. ** ************************************************************************* -** $Id$ +** ** ** This file implements an in-core database using Red-Black balanced ** binary trees. Index: build.c =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/3rdparty/sqlite/build.c,v retrieving revision 1.1.1.4 retrieving revision 1.2 diff -u -r1.1.1.4 -r1.2 --- build.c 22 Sep 2005 12:56:58 -0000 1.1.1.4 +++ build.c 23 Sep 2005 09:40:29 -0000 1.2 @@ -23,7 +23,7 @@ ** ROLLBACK ** PRAGMA ** -** $Id$ +** */ #include "sqliteInt.h" #include <ctype.h> Index: copy.c =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/3rdparty/sqlite/copy.c,v retrieving revision 1.1.1.4 retrieving revision 1.2 diff -u -r1.1.1.4 -r1.2 --- copy.c 22 Sep 2005 12:56:47 -0000 1.1.1.4 +++ copy.c 23 Sep 2005 09:40:29 -0000 1.2 @@ -11,7 +11,7 @@ ************************************************************************* ** This file contains code used to implement the COPY command. ** -** $Id$ +** */ #include "sqliteInt.h" Index: date.c =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/3rdparty/sqlite/date.c,v retrieving revision 1.1.1.4 retrieving revision 1.2 diff -u -r1.1.1.4 -r1.2 --- date.c 22 Sep 2005 12:56:47 -0000 1.1.1.4 +++ date.c 23 Sep 2005 09:40:29 -0000 1.2 @@ -16,7 +16,7 @@ ** sqliteRegisterDateTimeFunctions() found at the bottom of the file. ** All other code has file scope. ** -** $Id$ +** ** ** NOTES: ** Index: delete.c =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/3rdparty/sqlite/delete.c,v retrieving revision 1.1.1.4 retrieving revision 1.2 diff -u -r1.1.1.4 -r1.2 --- delete.c 22 Sep 2005 12:56:49 -0000 1.1.1.4 +++ delete.c 23 Sep 2005 09:40:29 -0000 1.2 @@ -12,7 +12,7 @@ ** This file contains C code routines that are called by the parser ** to handle DELETE FROM statements. ** -** $Id$ +** */ #include "sqliteInt.h" Index: expr.c =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/3rdparty/sqlite/expr.c,v retrieving revision 1.1.1.4 retrieving revision 1.2 diff -u -r1.1.1.4 -r1.2 --- expr.c 22 Sep 2005 12:56:48 -0000 1.1.1.4 +++ expr.c 23 Sep 2005 09:40:29 -0000 1.2 @@ -12,7 +12,7 @@ ** This file contains routines used for analyzing expressions and ** for generating VDBE code that evaluates expressions in SQLite. ** -** $Id$ +** */ #include "sqliteInt.h" #include <ctype.h> Index: func.c =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/3rdparty/sqlite/func.c,v retrieving revision 1.1.1.4 retrieving revision 1.2 diff -u -r1.1.1.4 -r1.2 --- func.c 22 Sep 2005 12:56:48 -0000 1.1.1.4 +++ func.c 23 Sep 2005 09:40:29 -0000 1.2 @@ -16,7 +16,7 @@ ** sqliteRegisterBuildinFunctions() found at the bottom of the file. ** All other code has file scope. ** -** $Id$ +** */ #include <ctype.h> #include <math.h> Index: hash.c =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/3rdparty/sqlite/hash.c,v retrieving revision 1.1.1.4 retrieving revision 1.2 diff -u -r1.1.1.4 -r1.2 --- hash.c 22 Sep 2005 12:56:49 -0000 1.1.1.4 +++ hash.c 23 Sep 2005 09:40:29 -0000 1.2 @@ -12,7 +12,7 @@ ** This is the implementation of generic hash-tables ** used in SQLite. ** -** $Id$ +** */ #include "sqliteInt.h" #include <assert.h> Index: hash.h =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/3rdparty/sqlite/hash.h,v retrieving revision 1.1.1.4 retrieving revision 1.2 diff -u -r1.1.1.4 -r1.2 --- hash.h 22 Sep 2005 12:56:49 -0000 1.1.1.4 +++ hash.h 23 Sep 2005 09:40:29 -0000 1.2 @@ -12,7 +12,7 @@ ** This is the header file for the generic hash-table implemenation ** used in SQLite. ** -** $Id$ +** */ #ifndef _SQLITE_HASH_H_ #define _SQLITE_HASH_H_ Index: insert.c =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/3rdparty/sqlite/insert.c,v retrieving revision 1.1.1.4 retrieving revision 1.2 diff -u -r1.1.1.4 -r1.2 --- insert.c 22 Sep 2005 12:56:59 -0000 1.1.1.4 +++ insert.c 23 Sep 2005 09:40:29 -0000 1.2 @@ -12,7 +12,7 @@ ** This file contains C code routines that are called by the parser ** to handle INSERT statements in SQLite. ** -** $Id$ +** */ #include "sqliteInt.h" Index: main.c =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/3rdparty/sqlite/main.c,v retrieving revision 1.1.1.4 retrieving revision 1.2 diff -u -r1.1.1.4 -r1.2 --- main.c 22 Sep 2005 12:56:49 -0000 1.1.1.4 +++ main.c 23 Sep 2005 09:40:29 -0000 1.2 @@ -14,7 +14,7 @@ ** other files are for internal use by SQLite and should not be ** accessed by users of the library. ** -** $Id$ +** */ #include "sqliteInt.h" #include "os.h" Index: pager.c =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/3rdparty/sqlite/pager.c,v retrieving revision 1.1.1.4 retrieving revision 1.2 diff -u -r1.1.1.4 -r1.2 --- pager.c 22 Sep 2005 12:56:53 -0000 1.1.1.4 +++ pager.c 23 Sep 2005 09:40:29 -0000 1.2 @@ -18,7 +18,7 @@ ** file simultaneously, or one process from reading the database while ** another is writing. ** -** @(#) $Id$ +** @(#) */ #include "os.h" /* Must be first to enable large file support */ #include "sqliteInt.h" Index: pager.h =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/3rdparty/sqlite/pager.h,v retrieving revision 1.1.1.4 retrieving revision 1.2 diff -u -r1.1.1.4 -r1.2 --- pager.h 22 Sep 2005 12:56:53 -0000 1.1.1.4 +++ pager.h 23 Sep 2005 09:40:29 -0000 1.2 @@ -13,7 +13,7 @@ ** subsystem. The page cache subsystem reads and writes a file a page ** at a time and provides a journal for rollback. ** -** @(#) $Id$ +** @(#) */ /* Index: pragma.c =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/3rdparty/sqlite/pragma.c,v retrieving revision 1.1.1.4 retrieving revision 1.2 diff -u -r1.1.1.4 -r1.2 --- pragma.c 22 Sep 2005 12:56:50 -0000 1.1.1.4 +++ pragma.c 23 Sep 2005 09:40:29 -0000 1.2 @@ -11,7 +11,7 @@ ************************************************************************* ** This file contains code used to implement the PRAGMA command. ** -** $Id$ +** */ #include "sqliteInt.h" #include <ctype.h> Index: random.c =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/3rdparty/sqlite/random.c,v retrieving revision 1.1.1.4 retrieving revision 1.2 diff -u -r1.1.1.4 -r1.2 --- random.c 22 Sep 2005 12:56:48 -0000 1.1.1.4 +++ random.c 23 Sep 2005 09:40:29 -0000 1.2 @@ -15,7 +15,7 @@ ** Random numbers are used by some of the database backends in order ** to generate random integer keys for tables or random filenames. ** -** $Id$ +** */ #include "sqliteInt.h" #include "os.h" Index: select.c =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/3rdparty/sqlite/select.c,v retrieving revision 1.1.1.4 retrieving revision 1.2 diff -u -r1.1.1.4 -r1.2 --- select.c 22 Sep 2005 12:56:50 -0000 1.1.1.4 +++ select.c 23 Sep 2005 09:40:29 -0000 1.2 @@ -12,7 +12,7 @@ ** This file contains C code routines that are called by the parser ** to handle SELECT statements in SQLite. ** -** $Id$ +** */ #include "sqliteInt.h" Index: shell.c =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/3rdparty/sqlite/shell.c,v retrieving revision 1.1.1.4 retrieving revision 1.2 diff -u -r1.1.1.4 -r1.2 --- shell.c 22 Sep 2005 12:56:46 -0000 1.1.1.4 +++ shell.c 23 Sep 2005 09:40:29 -0000 1.2 @@ -12,7 +12,7 @@ ** This file contains code to implement the "sqlite" command line ** utility for accessing SQLite databases. ** -** $Id$ +** */ #include <stdlib.h> #include <string.h> Index: sqlite.h =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/3rdparty/sqlite/sqlite.h,v retrieving revision 1.1.1.4 retrieving revision 1.2 diff -u -r1.1.1.4 -r1.2 --- sqlite.h 22 Sep 2005 12:56:47 -0000 1.1.1.4 +++ sqlite.h 23 Sep 2005 09:40:29 -0000 1.2 @@ -12,7 +12,7 @@ ** This header file defines the interface that the SQLite library ** presents to client programs. ** -** @(#) $Id$ +** @(#) */ #ifndef _SQLITE_H_ #define _SQLITE_H_ Index: sqliteInt.h =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/3rdparty/sqlite/sqliteInt.h,v retrieving revision 1.1.1.4 retrieving revision 1.2 diff -u -r1.1.1.4 -r1.2 --- sqliteInt.h 22 Sep 2005 12:56:45 -0000 1.1.1.4 +++ sqliteInt.h 23 Sep 2005 09:40:29 -0000 1.2 @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id$ +** @(#) */ #include "config.h" #include "sqlite.h" Index: tokenize.c =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/3rdparty/sqlite/tokenize.c,v retrieving revision 1.1.1.4 retrieving revision 1.2 diff -u -r1.1.1.4 -r1.2 --- tokenize.c 22 Sep 2005 12:56:56 -0000 1.1.1.4 +++ tokenize.c 23 Sep 2005 09:40:29 -0000 1.2 @@ -15,7 +15,7 @@ ** individual tokens and sends those tokens one-by-one over to the ** parser for analysis. ** -** $Id$ +** */ #include "sqliteInt.h" #include "os.h" Index: update.c =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/3rdparty/sqlite/update.c,v retrieving revision 1.1.1.4 retrieving revision 1.2 diff -u -r1.1.1.4 -r1.2 --- update.c 22 Sep 2005 12:56:47 -0000 1.1.1.4 +++ update.c 23 Sep 2005 09:40:29 -0000 1.2 @@ -12,7 +12,7 @@ ** This file contains C code routines that are called by the parser ** to handle UPDATE statements. ** -** $Id$ +** */ #include "sqliteInt.h" Index: util.c =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/3rdparty/sqlite/util.c,v retrieving revision 1.1.1.4 retrieving revision 1.2 diff -u -r1.1.1.4 -r1.2 --- util.c 22 Sep 2005 12:56:52 -0000 1.1.1.4 +++ util.c 23 Sep 2005 09:40:29 -0000 1.2 @@ -14,7 +14,7 @@ ** This file contains functions for allocating memory, comparing ** strings, and stuff like that. ** -** $Id$ +** */ #include "sqliteInt.h" #include <stdarg.h> Index: vacuum.c =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/3rdparty/sqlite/vacuum.c,v retrieving revision 1.1.1.4 retrieving revision 1.2 diff -u -r1.1.1.4 -r1.2 --- vacuum.c 22 Sep 2005 12:56:54 -0000 1.1.1.4 +++ vacuum.c 23 Sep 2005 09:40:29 -0000 1.2 @@ -14,7 +14,7 @@ ** Most of the code in this file may be omitted by defining the ** SQLITE_OMIT_VACUUM macro. ** -** $Id$ +** */ #include "sqliteInt.h" #include "os.h" Index: vdbe.c =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/3rdparty/sqlite/vdbe.c,v retrieving revision 1.1.1.4 retrieving revision 1.2 diff -u -r1.1.1.4 -r1.2 --- vdbe.c 22 Sep 2005 12:56:52 -0000 1.1.1.4 +++ vdbe.c 23 Sep 2005 09:40:29 -0000 1.2 @@ -43,7 +43,7 @@ ** in this file for details. If in doubt, do not deviate from existing ** commenting and indentation practices when changing or adding code. ** -** $Id$ +** */ #include "sqliteInt.h" #include "os.h" Index: vdbe.h =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/3rdparty/sqlite/vdbe.h,v retrieving revision 1.1.1.4 retrieving revision 1.2 diff -u -r1.1.1.4 -r1.2 --- vdbe.h 22 Sep 2005 12:56:52 -0000 1.1.1.4 +++ vdbe.h 23 Sep 2005 09:40:29 -0000 1.2 @@ -15,7 +15,7 @@ ** or VDBE. The VDBE implements an abstract machine that runs a ** simple program to access and modify the underlying database. ** -** $Id$ +** */ #ifndef _SQLITE_VDBE_H_ #define _SQLITE_VDBE_H_ Index: where.c =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/3rdparty/sqlite/where.c,v retrieving revision 1.1.1.4 retrieving revision 1.2 diff -u -r1.1.1.4 -r1.2 --- where.c 22 Sep 2005 12:56:56 -0000 1.1.1.4 +++ where.c 23 Sep 2005 09:40:29 -0000 1.2 @@ -12,7 +12,7 @@ ** This module contains C code that generates VDBE code used to process ** the WHERE clause of SQL statements. ** -** $Id$ +** */ #include "sqliteInt.h" |