Gavin Harriss wrote:
> I'm wondering if there's plans for the Windows Phone implementation to
> support read-only databases on the SD card?
>
> > I expect that the SQLite implementation for the phone tries to open the
> > database using standard C file API rather than using the Storage
> > objects and so requires that the database be in the Xap or isolated storage
> > and cannot access a database on the SD card (this is definitely the case
> > for SQLite for Windows Store apps).
> >
> > In theory it would be possible to update SQLite to use Storage objects, but
> > I suspect it would be a significant project to do so.

SQLite has a mechanism to replace its file access functions:
<http://www.sqlite.org/vfs.html>

But while you could write a VFS that uses Storage objects, this would
not be possible with C# only.


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

Reply via email to