vote up 4 vote down star

I need a function which executes an INSERT statement on a database and returns the Auto_Increment primary key. I have the following C# code but, while the INSERT statement works fine (I can see the record in the database, the PK is generated correctly and rows == 1), the id value is always 0. Any ideas on what might be going wrong?

    public int ExecuteInsertStatement(string statement)
    {
        InitializeAndOpenConnection();
        int id = -1;


        IDbCommand cmdInsert = connection.CreateCommand();
        cmdInsert.CommandText = statement;
        int rows = cmdInsert.ExecuteNonQuery();

        if (rows == 1)
        {
            IDbCommand cmdId = connection.CreateCommand();
            cmdId.CommandText = "SELECT @@Identity;";
            id = (int)cmdId.ExecuteScalar();
        }

        return id;
    }
    private void InitializeAndOpenConnection()
    {
        if (connection == null)
            connection = OleDbProviderFactory.Instance.CreateConnection(connectString);

        if(connection.State != ConnectionState.Open)                 
            connection.Open();
    }

In response to answers, I tried:

public int ExecuteInsertStatement(string statement, string tableName)
    {
        InitializeAndOpenConnection();
        int id = -1;
        IDbCommand cmdInsert = connection.CreateCommand();
        cmdInsert.CommandText = statement + ";SELECT OID FROM " + tableName + " WHERE OID = SCOPE_IDENTITY();";
        id = (int)cmdInsert.ExecuteScalar();

        return id;
    }

but I'm now getting the error "Characters found after end of SQL statement"

I'm using an MS Access database with OleDb connection, Provider=Microsoft.Jet.OLEDB.4.0

flag
Could you clarify what database server you're using and possibly inline the references to InitializeAndOpenConnection / connection.CreateCommand as they may affect our answers to you? :) – Rob Oct 9 '08 at 10:00
Also - the whole "SELECT OID FROM x where OID = SCOPE_IDENTITY()" thins is somewhat over complex as you're saying (for a record inserted with an identity value of 3): "SELECT 3 FROM table_x WHERE 3 = 3" - kinda redundant – Rob Oct 9 '08 at 10:02
@Rob: it may seem redundant, but OID is typed int, where scope_identity() is not, so you can directly cast (int)cmd.ExecuteScalar() – devio Oct 9 '08 at 13:03
You're not using an Access database -- you're using a Jet database. – David W. Fenton Oct 11 '08 at 20:52
I definitive answer for this question would be really nice. This entire thread just seems to be filled with misinformation and solutions for SQL Server - not the Jet engine. – Matthew Ruston Nov 24 '08 at 21:31

11 Answers

vote up 9 vote down

1) combine the INSERT and SELECT statement (concatenate using ";") into 1 db command

2) use SCOPE_IDENTITY() instead of @@IDENTITY

INSERT INTO blabla... ; SELECT OID FROM table WHERE OID = SCOPE_IDENTITY()

-- update:

as it turned out that the question was related to MS ACCESS, I found this article which suggests that simply reusing the first command and setting its CommandText to "SELECT @@IDENTITY" should be sufficient.

link|flag
The reason why is because otherwise you're issuing two commands, and the second command knows zilch about the first command and so whilst you have created an IDENTITY value you're not getting it out of the second (disconnected) command. – anonymous Oct 9 '08 at 10:02
This gives me the "Characters found after end of SQL statement" error – Gillian Oct 9 '08 at 10:08
just use "SELECT SCOPE_IDENTITY()" after the first statement. see my link below for a good explanation of this. – evilhomer Oct 9 '08 at 10:12
vote up 4 vote down

you need to return the identity at the same time as you open the initial connection. Return a result set from your insert or an output variable.

You should also always use SCOPE_IDENTITY() not @@identity. Reference here

You should add

SELECT SCOPE_IDENTITY()

After the insert.

link|flag
vote up 3 vote down

Microsoft.Jet.OLEDB.4.0 provider supports Jet v3 and Jet v4 database engines, however SELECT @@IDENTITY is not supported for Jet v3.

MSAccess 97 is Jet v3 and does not support SELECT @@IDENTITY; It supported on MSAccess 2000 and above.

link|flag
vote up 1 vote down

I think you need to have the Select @@identity with the first create command - try appending it via ";SELECT @@Identity" and .ExecuteScalar the insert statement

link|flag
vote up 1 vote down

You are using Jet (not SQL Server) and Jet can only handle one SQL statement per command, therefore you need to execute SELECT @@IDENTITY in a separate command, obviously ensuring it uses the same connection as the INSERT.

link|flag
vote up 0 vote down

Are there any triggers on your table that might be inserting into other tables? Generally we're advised against using @@Identity in favour of IDENT_CURRENT so that you can guarantee that the identity returned is for the table you just inserted into.

link|flag
I think you should be using SCOPE_IDENTITY as it returns the last identity value generated for any table in the current session and the current scope so if it is called just after the insert to you table you are guaranteed to get the proper value. – kristof Oct 9 '08 at 9:57
With IDENT_CURRENT although you specify the table name you do not guarantee that it is within the scope of your operation, see definition: "Returns the last identity value generated for a specified table or view. The last identity value generated can be for any session and any scope" – kristof Oct 9 '08 at 9:58
I think either has its drawbacks then. The chances of getting "another" identity from the same table would be similar to getting an identity from another table in the same scope. Either is better than @@Identity. – Matt Hamilton Oct 9 '08 at 10:35
Hi Matt,if you call "insert myTable" then "scope_identity" you know it concerns myTable and you are guaranteed that it is within the current scope. When calling IDENT_CURRENT('myTable') you are not guaranteed the scope so it is outside you control. Would be nice to have scope_identity('myTable') :-) – kristof Oct 9 '08 at 11:05
Do not use Ident_current. One of our programmers did this and caused havok in the database as concurrent processses caused related tables to contain records related to the wrong parent. Please change to scope_identity. – HLGEM Oct 9 '08 at 13:20
vote up 0 vote down

I think that @@identity is valid only in the scope of the command - in your case when you execute "statement".

Modify your "statement"so that the stored procedure itself will return the @@IDENTITY value right after the INSERT statement, and read it as the return code of the stored procedure execution.

link|flag
vote up 0 vote down

Check your database settings. I had a similar problem a while ago and discovered that the SQL Server connection setting 'no count' was enabled.

In SQL Server Management Studio, you can find this by right-clicking the server in the Object Explorer, select Properties and then navigate to the Connections page. Look at the settings for "Default connection options"

link|flag
Doh, just read that you were using MS Access, and not SQL Server. Not sure if my answer applies to MS Access... – Geir-Tore Lindsve Oct 9 '08 at 10:20
Not using Access, but Jet. – David W. Fenton Oct 11 '08 at 20:53
vote up 0 vote down

As you're using Access, take a look at this article from aspfaq, scroll down to about half way down the page. The code's in classic ASP, but hopefully the principles should still stand.


The SELECT @@Identity ends up being treated as a separate execution context, I believe. Code that should work would be:

public int ExecuteInsertStatement(string statement)
{
    InitializeAndOpenConnection();

    IDbCommand cmdInsert = connection.CreateCommand();
    cmdInsert.CommandText = statement + "; SELECT @@Identity";
    object result = cmdInsert.ExecuteScalar();

    if (object == DBNull.Value)
    {
       return -1;
    }
    else
    {
       return Convert.ToInt32(result);
    }
}

You'd probably want/need to tidy up the concatenation that adds the 'SELECT @@Identity' onto the end of the code though.

link|flag
vote up 0 vote down

Aren't most of the answerers forgetting that the asker is not using SQL Server?

Apparently, MS Access 2000 and later doesn't support @@IDENTITY. The alternative is "Using the RowUpdated event, you can determine if an INSERT has occurred, retrieve the latest @@IDENTITY value, and place that in the identity column of the local table in the DataSet."

And yes, this is for embedded VBA in the Access DB. That is still callable outside of Access via the Access Object Library.

Edit: ok, it is supported, sorry for the groggy early-morning answer. But the rest of this answer might help.

link|flag
"MS Access 2000 and later doesn't support @@IDENTITY" -- you've got that the wrong way round. @@IDENTITY is only supported from MS Access 2000 onwards. The OP said they are using Jet 4.0, which first shipped with MS Access 2000. – onedaywhen Oct 9 '08 at 11:02
Most answerers aren't forgetting that - the fact that the target database engine was Access wasn't stated until after a fair few answers had been made :) – Rob Oct 9 '08 at 11:52
The moral of the story: don't answer questions at 6 a.m. – moffdub Oct 9 '08 at 21:12
The database engine is not Access, as Access is not a database engine, but a database application development platform that ships with a default db engine, i.e., Jet. – David W. Fenton Oct 11 '08 at 20:55
vote up 0 vote down

If you would like to retrieve value of auto running number of transaction that you're inserting and your environment following 1. Database is MsAccess. 2. Driver is Jet4 with connection string like this "Provider=Microsoft.Jet.OLEDB.4.0;Password={0};Data Source={1};Persist Security Info=True" 3. use Oledb

You can apply my example to your code

OleDbConnection connection =  String.Format("Provider=Microsoft.Jet.OLEDB.4.0;Password={0};Data Source={1};Persist Security Info=True",dbinfo.Password,dbinfo.MsAccessDBFile);
connection.Open();
OleDbTransaction transaction = null;
try{
    connection.BeginTransaction();
    String commandInsert = "INSERT INTO TB_SAMPLE ([NAME]) VALUES ('MR. DUKE')";
    OleDbCommand cmd = new OleDbCommand(commandInsert , connection, transaction);
    cmd.ExecuteNonQuery();
    String commandIndentity = "SELECT @@IDENTITY";
    cmd = new OleDbCommandcommandIndentity, connection, transaction);
    Console.WriteLine("New Running No = {0}", (int)cmd.ExecuteScalar());
    connection.Commit();
}catch(Exception ex){
    connection.Rollback();
}finally{
    connection.Close();
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.