0

我在 Windows Mobile 6.5 设备上有扫描仪应用程序。

在我扫描大约 100 个项目后,应用程序不断崩溃(我打开 SqlCe 连接并执行 SQL 查询以使用查询结果填充临时 DataTable)。

我的 C# 代码如下所示:

// Search with SQL
modFunctions.tempItemTable = new AppScanDataSet.itemDataTable();
string connectionString = @"Data Source='" + modFunctions.AppPath() + "AppScan.sdf'; Max Database Size = 512; Max Buffer Size = 4096;";
string strSql = "SELECT * FROM item WHERE Barcode = '" + modFunctions.strBarcode +  "'";

using (SqlCeConnection mConnection = new SqlCeConnection(connectionString))
{
    mConnection.Open();

    //SqlCeConnection mConnection = new SqlCeConnection(connectionString);
    SqlCeCommand mCommand = new SqlCeCommand(strSql, mConnection);

    // Read all rows from the table into a dataset (note, the adapter automatically opens connection)
    SqlCeDataAdapter adapter = new SqlCeDataAdapter(mCommand);
    adapter.Fill(modFunctions.tempItemTable);

    mConnection.Close();
    mConnection.Dispose();
}

崩溃时的错误是:

AppScan.exe
SqlCeException
Not enough storage is available to complete this operation

可能是什么问题?我正在清除 tempItemTable(使用Dispose()and Clear())。我还添加了mConnection.Close()mConnection.Dispose()...但它没有帮助。

此外,当我转到设置 > 系统 > 内存时。当应用程序崩溃时,我似乎有足够的可用内存(100MB 中有 30MB)。

我需要处理adapter吗?还是mCommand

4

1 回答 1

2

您的内存不足。不建议在 Windows Mobile 中使用 DataSet,而是使用数组或列表。

于 2014-01-30T08:51:39.397 回答