使用本地数据库时减少存储空间错误

时间:2013-01-31 12:27:36

标签: c# database windows-phone-8

我正在使用local database来存储我的数据。我的代码基于一个教程:How to create a basic local database app for Windows Phone一切都是正确的,但我不得不在我的数据库中添加更多数据,现在当我尝试这样做时,我收到信息“你的手机存储空间不足” 。我的数据库可能太大了吗?

这是我创建数据库的方式:

using (TablesDataContext db = new TablesDataContext(TablesDataContext.DBConnectionString))
{
    if (db.DatabaseExists() == false)
    {
       //Create the database
        db.CreateDatabase();
    }
}

我的DataContext

public class TablesDataContext : DataContext
    {
        // Specify the connection string as a static, used in main page and app.xaml.
        public static string DBConnectionString = "Data Source=isostore:/Customers.sdf";

        // Pass the connection string to the base class.
        public TablesDataContext(string connectionString)
            : base(connectionString)
        { }

        // Specify a single table for the to-do items.
        public Table<CustomerItem> CustomersTable;
        public Table<CategorieItem> CategoriesTable;
        public Table<ProductItem> ProductsTable;
        public Table<CustomerPricesItem> CustomerPricesTable;
    }

1 个答案:

答案 0 :(得分:0)

您确定手机有足够的可用存储空间吗?

如果手机有足够的可用空间,可以尝试在连接字符串中添加Max Database Size参数。默认情况下,首次创建数据库时,大小设置为32Mb。包括最大数据库大小,您可以指定所需的大小,最大值为512Mb:

"Data Source='isostore:/Db.sdf'; Max Database Size = 256;"

这样,第一次使用上面的连接字符串创建数据库时,最大大小设置为256Mb。

此外,我知道这是另一个问题,但如果您的写入是大型数据集,您可能希望在连接字符串中添加最大缓冲区大小参数,最大值为5120 (5Mb)它表示在继续写入磁盘之前存储在内存中的数据量...它可以加快写入速度:

"Data Source='isostore:/Db.sdf'; Max Database Size = 256; Max Buffer Size = 3072;"

如果您的数据太大,可能需要将其拆分为不同的文件或使用其他数据库作为SQLite。

您在数据库中存储了哪些数据?图片?只有文本...二进制文件...也许有一种更好的方法来优化数据库大小,如果你在db字段上存储图像,也许最好将图像存储在隔离存储和db中的路径中。

希望这个帮助!