Rice, Roger wrote:
>
>       dim rs,x, conn, dir
>       
>       conn=Server.CreateObject("ADODB.Connection") 
>       'conn.provider="Microsoft.Jet.OLEDB.4.0"
>       conn.provider="System.Data.SQLite"
>       conn.Mode  = 1    
>       'conn.open(server.mappath("..\pub\" & folder.name &
"\Messages.mdb"))
>       conn.open(server.mappath("..\pub\" & folder.name & "\store.db3"))
>       
>                rs=Server.CreateObject("ADODB.Recordset")  
>

The above code fragment looks a lot like classic ASP, not ASP.NET.  The
System.Data.SQLite
ADO.NET provider only works with .NET.  It does not work with classic ADO,
which was used
by classic ASP.

_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to