Är det ngn som har koll på om det går att använda CE till en webbsajt? Utan besvär? Jag vill kunna använda en databas utan att behöva prata/installera webbhotell. Räcker det med dll:er eller måste ngt vara installerat på servern. Det gäller ett liten mängd data som jag har tänkt att lägga i cache. Jag vill slippa dyra månadsavgifter och ha en enkel uppladdning/installation som fungerar på alla webbhotell som har stöd för .net. Så här [1] säger MSDN, om det är för krångligt eller inte är upp till dig... SQLite ok coolt, det ska jag kolla på. Har du några erfarenheter? Fungerar den bra? SQL Server 2005 Compact Edition
Sv: SQLLite bättre för webb...
Steve Lasker säger på sin sida ..
"The supported, intended scenario for this is for developers that need to pre-build .sdf files for clients. However, developers that are building small scale websites that understand the limitations of SQLce under ASP.net could also use this code. However, as noted, this is not the currently intended purpose or focus for SQLce. Our first priority is nailing the client scenarios. "
på http://blogs.msdn.com/stevelasker/archive/2006/11/27/sql-server-compact-edition-under-asp-net-and-iis.aspx
[1]http://msdn2.microsoft.com/en-us/library/system.data.sqlserverce.sqlceconnection.aspx
"SQL Server Compact 3.5 is not currently optimized to serve as a database for Web sites. By default, connections from ASP.NET-connected applications are blocked in SQL Server Everywhere Edition. SQL Server Everywhere Edition is optimized for use as an embedded database within applications. Using SQL Server Compact 3.5 as a database for Web sites requires support for multiple users and concurrent data changes. This can cause performance problems. Therefore, these scenarios are not supported. Other editions of SQL Server 2005, including SQL Server 2005 Express Edition, are optimized to serve as a database for Web sites.
SQL Server Compact 3.5 can be used with ASP.NET in application scenarios where ASP.NET is used to create SQL Server Compact 3.5 databases for synchronization scenarios. Use the following code to change the default behavior of Everywhere Edition to work within ASP.NET.
AppDomain.CurrentDomain.SetData("SQLServerEverywhereUnderWebHosting", true)
"
Som alternativ
Du har ju fler lösningar än CE..
* XML-filer
* Access
* SQLLite
Med tex en .NET-wrapper SQLite.NET sqlite.phxsoftware.com
För lite mer rolig läsning om det så se tex denna codeprojectartikel om Linq2Sql med SQLite.Net
www.codeproject.com/KB/linq/linqToSql_7.aspx
....
// Lycka till!Sv:SQLLite bättre för webb...
Är det enkelt att skapa tabeller, relationer? Gränssnitt? Går det att använda i dataset?