diff options
author | drh <drh@noemail.net> | 2004-09-06 17:24:11 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2004-09-06 17:24:11 +0000 |
commit | 9bb575fd72e8c92a39f35bfd75591b210908faad (patch) | |
tree | c71d1973ac94e40d9510c941a3ab0501591f59be /src/delete.c | |
parent | 873cdcb2ce572b2c1d03d70db8ebfa03266518e9 (diff) | |
download | sqlite-9bb575fd72e8c92a39f35bfd75591b210908faad.tar.gz sqlite-9bb575fd72e8c92a39f35bfd75591b210908faad.zip |
Fix a naming conflict between sqlite versions 2 and 3. An open sqlite3
connection now *must* be called "sqlite3". You cannot call it "sqlite".
This might break existing code. (CVS 1941)
FossilOrigin-Name: 3ddf5a9d1c480a2e3aa32685879063b11afddbe1
Diffstat (limited to 'src/delete.c')
-rw-r--r-- | src/delete.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/delete.c b/src/delete.c index 918b597dd..f741b5a3a 100644 --- a/src/delete.c +++ b/src/delete.c @@ -12,7 +12,7 @@ ** This file contains C code routines that are called by the parser ** to handle DELETE FROM statements. ** -** $Id: delete.c,v 1.79 2004/08/31 13:45:12 drh Exp $ +** $Id: delete.c,v 1.80 2004/09/06 17:24:13 drh Exp $ */ #include "sqliteInt.h" @@ -65,7 +65,7 @@ void sqlite3DeleteFrom( WhereInfo *pWInfo; /* Information about the WHERE clause */ Index *pIdx; /* For looping over indices of the table */ int iCur; /* VDBE Cursor number for pTab */ - sqlite *db; /* Main database structure */ + sqlite3 *db; /* Main database structure */ int isView; /* True if attempting to delete from a view */ AuthContext sContext; /* Authorization context */ @@ -335,7 +335,7 @@ delete_from_cleanup: ** entries that point to that record. */ void sqlite3GenerateRowDelete( - sqlite *db, /* The database containing the index */ + sqlite3 *db, /* The database containing the index */ Vdbe *v, /* Generate code into this VDBE */ Table *pTab, /* Table containing the row to be deleted */ int iCur, /* Cursor number for the table */ @@ -365,7 +365,7 @@ void sqlite3GenerateRowDelete( ** deleted. */ void sqlite3GenerateRowIndexDelete( - sqlite *db, /* The database containing the index */ + sqlite3 *db, /* The database containing the index */ Vdbe *v, /* Generate code into this VDBE */ Table *pTab, /* Table containing the row to be deleted */ int iCur, /* Cursor number for the table */ |