I'm using Sql Compact3.5 as my DB with C# .NET what is the maximum size of sdf that I can give??? Is there any way to programatically increase the maximum size of the sdf file??? if so how???
+5
A:
The maximum size of the database is by default 128 MB. Override this by using the following connection string.
Data Source=MyData.sdf;Max Database Size=256;Persist Security Info=False;
(from: http://www.connectionstrings.com/sql-server-2005-ce) and (from: http://msdn.microsoft.com/...)
The absolute maximum size of the database is 4gb.
Benny Jobigan
2010-03-09 11:14:37
thanks for the reply. I'll surely try that!!!
Jankhana
2010-03-09 13:14:41