Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9126319
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T07:00:51+00:00 2026-06-17T07:00:51+00:00

I have a SQL Server Compact Edition database with a table with 3 columns:

  • 0

I have a SQL Server Compact Edition database with a table with 3 columns: Id, Field1 and Field2. Id is IDENTITY(1,1) NOT NULL.

const string SQL_INSERT = @"INSERT INTO Table(Field1, Field2) VALUES(@Param1, @Param2)";
const string SQL_SELECT_IDENTITY = @"SELECT @@IDENTITY AS ID";
SqlCeConnection cn = null;
SqlCeTransaction tr = null;
SqlCeCommand cm = null;

try
{
   cn = Utility.GetConnection();
   cn.Open();

   tr = cn.BeginTransaction();
   cm = new SqlCeCommand(SQL_INSERT, cn);
   cm.Transaction = tr;
   cm.Parameters.AddWithValue("@Param1", data.Data1);
   cm.Parameters.AddWithValue("@Param2", (int)data.Data2);
   cm.ExecuteNonQuery();

   cm = new SqlCeCommand(SQL_SELECT_IDENTITY, cn);
   object o = cm.ExecuteScalar();
   data.Id = Convert.ToInt32(o);
   // other operations
}

The problem is that cm.ExecuteScalar() returns null. If I remove the transaction, the query returns the appropriate value. Using SCOPE_IDENTITY() just fails because it’s not supported in SQL Server CE.

How can I retrieve the inserted identity value? Is there any workaround to solve this problem?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T07:00:52+00:00Added an answer on June 17, 2026 at 7:00 am

    I just realized the cause, the identity select also needs to use the transaction.

    cm = new SqlCeCommand(SQL_SELECT_IDENTITY, cn);
    // ADD THE TRANSACTION TO THE COMMAND
    cm.Transaction = tr;
    // ----------------------------------
    object o = cm.ExecuteScalar();
    data.Id = Convert.ToInt32(o);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this question in which I have a SQL Server Compact Edition database
I have a SQL Server Compact Edition Database file, and I want to display
I have created a database in SQL server Compact Edition. I tried to attach
I have the following database schema (Microsoft SQL Server Compact Edition): How can I
I am using SQL Server Compact Edition. I have a simple table: CREATE TABLE
I have the following code to connect to a sql server compact edition 2008:
I have SQL Server Compact 3.5 database that contains account information. But everytime I
Is SQL Server Compact Edition Serverless? I mean, If I have a Northwind.sdf file
I have just installed Sql Server Compact Edition . To my surprise, we can't
I am connected to a SQL Server Compact Edition Database. One of the tables

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.