On 13 Jul 2012, at 3:11pm, [email protected] <[email protected]> wrote:
> We need to move a MS Access database to something more portable. Is the > “http://system.data.sqlite.org” the way to go for getting SQLite API access > from the Microsoft stuff (Visual Studio, other)? > The programmer needs to use C# (c sharpe) for his coding that interacts with > the database. Is it a native API or wrapper? It's a wrapper. The native API is C code. It turns out that C# is not a superset of C, so if you need access from that you'll have to use a wrapper or shim of some kind. The page you cite is for a commonly-used ADO.NET adapter which should meet your needs, though you should allow the programmer herself or himself to make their own selection. Simon. _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

