Is there a way to increase the size limit for Sql Server Compact edition on Windows phone 7?
I am working on an app that adds a lot of data,and i keep getting size limit exception( size cannot be greater than 32Mb).
i tried adding “Max database size” to the connection string but it seems that doesn’t work for Windows phone.
i have tried checking other peoples answer here but they dont seem to address windows phone
Maximum database size of Windows phone7 sql server compact edition is 512 Mb; You can refer to the following link to create a database of 512Mb
MyDataContext db = new MyDataContext(“Data Source = ‘mydb.sdf’; File Mode = read only; Max Database Size = 512);