SQL Server CE:沒有足夠的儲存空間來完成該操作[CODE:8007000E]

來源:互聯網
上載者:User

如果你編寫的 SQL Server CE 應用程式出現下面的錯誤資訊:

   Error Code: 8007000E
   Message: Not enough storage is available to complete this operation.
   Minor Err.:0 Source: Microsoft SQL Server 2000 Windows CE Edition

或者

   Error Code: 8007000E
   Message: 沒有足夠的儲存空間來完成該操作。
   Minor Err.:0 Source: Microsoft SQL Server 2000 Windows CE Edition

可能是以下原因導致的:
你在使用 SqlCeDataAdapter 對象填充 DataSet 後,沒有顯式地調用相關 SqlCeCommand 對象的 Dispose 方法。

解決方案:
在使用完 SqlCeDataAdapter 對象後,顯式地調用與 SqlCeDataAdapter 對象相關的 SqlCeCommand 對象的 Dispose 方法。包括有 SelectCommand、InsertCommand、UpdateCommand 和 DeleteCommand。

範例程式碼:

public static DataSet LoadData()
{
    string sqlstring = "";

    //  Make the connection to the SQL Server CE data source
    SqlCeConnection conn = new SqlCeConnection("Data Source=<completePath of SDF file>");
    //  Create the SqlCeDataAdapter object
    sqlCeDataAdapter da = new SqlCeDataAdapter();
    //  Create the DataSet object
    DataSet ds = new DataSet();

    try
    {
        sqlstring = "select name from mytable where name = ?";

        // Create the SelectCommand instance to run a select query
        da.SelectCommand = new SqlCeCommand();

        // Set SelectCommand object properties
        da.SelectCommand.Connection = conn;
            da.SelectCommand.CommandText = sqlstring;
        da.SelectCommand.Parameters.Add(new  SqlCeParameter("name", System.Data.SqlDbType.NVarChar, 30));
        da.SelectCommand.Parameters["name"].Value = name;

        //  Populate the DataSet object
        da.Fill(ds,"name");
    }
    catch (SqlCeException sqlx)
    {
        ShowErrors(sqlx);
    }
    catch (Exception x)
    {
        MessageBox.Show(x.Message.ToString());
    }
    finally
    {
        //  Explicitly dispose the SelectCommand instance
        da.SelectCommand.Dispose();
        da.Dispose();
    }

    return ds;
}

參考微軟知識庫:
SqlCeCommand objects are not automatically disposed if you use a SqlCeDataAdapter object

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.