aboutsummaryrefslogtreecommitdiff
path: root/src/attach.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/attach.c')
-rw-r--r--src/attach.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/attach.c b/src/attach.c
index bd2c48f0e..d20c662b9 100644
--- a/src/attach.c
+++ b/src/attach.c
@@ -11,7 +11,7 @@
*************************************************************************
** This file contains code used to implement the ATTACH and DETACH commands.
**
-** $Id: attach.c,v 1.27 2004/09/05 23:23:42 drh Exp $
+** $Id: attach.c,v 1.28 2004/09/06 17:24:12 drh Exp $
*/
#include "sqliteInt.h"
@@ -33,7 +33,7 @@ void sqlite3Attach(
Db *aNew;
int rc, i;
char *zFile, *zName;
- sqlite *db;
+ sqlite3 *db;
Vdbe *v;
v = sqlite3GetVdbe(pParse);
@@ -154,7 +154,7 @@ void sqlite3Attach(
*/
void sqlite3Detach(Parse *pParse, Token *pDbname){
int i;
- sqlite *db;
+ sqlite3 *db;
Vdbe *v;
Db *pDb = 0;
@@ -206,7 +206,7 @@ int sqlite3FixInit(
const char *zType, /* "view", "trigger", or "index" */
const Token *pName /* Name of the view, trigger, or index */
){
- sqlite *db;
+ sqlite3 *db;
if( iDb<0 || iDb==1 ) return 0;
db = pParse->db;