RE: [sqlite] Connection error to a SQLite3 Database

2006-08-06 Thread Artie Pagan
That is correct -- it is ASP and COM object.  I'll go ahead and report it to
that forum.  Thanks.

-Original Message-
From: Robert Simpson [mailto:[EMAIL PROTECTED] 
Sent: Sunday, August 06, 2006 4:40 PM
To: sqlite-users@sqlite.org; [EMAIL PROTECTED]
Subject: RE: [sqlite] Connection error to a SQLite3 Database

You'll have to report this on the forum where you got the wrapper you're
using.  It looks like ASP and COM objects?


> -Original Message-
> From: Artie Pagan [mailto:[EMAIL PROTECTED] 
> Sent: Sunday, August 06, 2006 12:09 PM
> To: sqlite-users@sqlite.org
> Subject: [sqlite] Connection error to a SQLite3 Database
> 
> I am using the following to connect to a SQLite3 database:
> 
>  
> 
> **
> **
> **
> *
> 
> Set db = server.CreateObject("newObjects.sqlite.dbutf8")
> 
> db.AutoType = True
> 
> db.TypeInfoLevel = 4
> 
>  
> 
>  If Not db.Open(Server.MapPath("test.db")) Then
> 
>Response.Write "Error occured: " & db.LastError
> 
>  End If
> 
> **
> **
> **
> *
> 
>  
> 
> But I continue to get this error message: "Error occured: 
> file is encrypted
> or is not a database"
> 
>  
> 
> I believe that it may have to do with it not recognizing that 
> the database
> is SQLite3 (and not an older version).  Can some one give me 
> some direction
> as to what I may need to do to correct this?  Thanks in advance.
> 
> 






RE: [sqlite] Connection error to a SQLite3 Database

2006-08-06 Thread Robert Simpson
You'll have to report this on the forum where you got the wrapper you're
using.  It looks like ASP and COM objects?


> -Original Message-
> From: Artie Pagan [mailto:[EMAIL PROTECTED] 
> Sent: Sunday, August 06, 2006 12:09 PM
> To: sqlite-users@sqlite.org
> Subject: [sqlite] Connection error to a SQLite3 Database
> 
> I am using the following to connect to a SQLite3 database:
> 
>  
> 
> **
> **
> **
> *
> 
> Set db = server.CreateObject("newObjects.sqlite.dbutf8")
> 
> db.AutoType = True
> 
> db.TypeInfoLevel = 4
> 
>  
> 
>  If Not db.Open(Server.MapPath("test.db")) Then
> 
>Response.Write "Error occured: " & db.LastError
> 
>  End If
> 
> **
> **
> **
> *
> 
>  
> 
> But I continue to get this error message: "Error occured: 
> file is encrypted
> or is not a database"
> 
>  
> 
> I believe that it may have to do with it not recognizing that 
> the database
> is SQLite3 (and not an older version).  Can some one give me 
> some direction
> as to what I may need to do to correct this?  Thanks in advance.
> 
>