Re: [sqlite] SQLite in DotNet environment and virtual tables

2008-04-16 Thread Samuel Neff
While System.Data.SQLite does not support virtual tables, it does support custom funcions written in .NET and is open source, so that should get you a long way towards writing virtual tables in .NET (but still will require some C interop programming). http://sqlite.phxsoftware.com/ HTH, Sam

Re: [sqlite] SQLite in DotNet environment and virtual tables

2008-04-16 Thread Michael Ruck
t: Mittwoch, 16. April 2008 10:53 > An: sqlite-users@sqlite.org > Betreff: [sqlite] SQLite in DotNet environment and virtual tables > > Hi all, > > we are using SQLite in a DotNet environment and want to > support virtual tables via sqlite3_load_extension. > > Did a

[sqlite] SQLite in DotNet environment and virtual tables

2008-04-16 Thread Sylko Zschiedrich
Hi all, we are using SQLite in a DotNet environment and want to support virtual tables via sqlite3_load_extension. Did anybody know a wrapper for SQLite or sample code for implementing virtual tables in DetNet. (C#)? I know there are many DotNet wrappers for SQLite but noone supports virtual