Hello, In the source code of Mono, there is nothing like System.Data.SqlServerCe. see https://github.com/mono/mono/tree/master/mcs/class/System.Data There is only https://github.com/mono/mono/tree/master/mcs/class/System.Data/Microsoft.SqlServer.Server for access to a full Microsoft SQL Server running on a different (Windows) machine I assume.
I found quite an old discussion, but probably still valid, here: http://stackoverflow.com/questions/2644464/can-i-use-sql-server-compact-edition-ce-on-mono even older: http://mono.1490590.n4.nabble.com/Sql-Server-Compact-on-Mono-td1501351.html The problem is that SQL Server Compact Edition itself probably won't run on Linux, or you could try Wine as has been suggested in the posts above. The alternative is probably to use SQLite or VistaDB, as mentioned in the links above. All the best, Timotheus On 27 March 2014 08:49, TentacleSquirrel <[email protected]> wrote: > Hello > > I've been attempting to import a VS2012 project which uses the > System.Data.SqlServerCe namespace for a local SQL server database to Linux > using Monodevelop, but of course the namespace does not exist. > > I'm not even sure this is the right mailing list - but I'm guessing the > namespace itself has to be implemented in Mono itself, so I'm asking here: > Is there a way to compile a C# program with a local SQL Server database > integrated into the project using Mono on Linux? > > I'm on Debian testing, so maybe it's implemented in a more recent version of > Mono than the one I have - searching the internet or asking on stackoverflow > did not yield any results. > > Any help with this will be greatly appreciated! > > > > -- > View this message in context: > http://mono.1490590.n4.nabble.com/The-System-Data-SqlServerCe-Namespace-tp4662372.html > Sent from the Mono - General mailing list archive at Nabble.com. > _______________________________________________ > Mono-list maillist - [email protected] > http://lists.ximian.com/mailman/listinfo/mono-list _______________________________________________ Mono-list maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-list
