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.

Reply via email to