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

  • Home
  • SEARCH
  • 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 6005973
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T01:28:25+00:00 2026-05-23T01:28:25+00:00

When doing a Insert the variable id is returned as an object. However in

  • 0

When doing a Insert the variable id is returned as an object. However in my database it is an int and in my POCO it is an int however when the method call to ExecuteScalar to return @@IDENTITY is called it returns the number 7 as an object but the debugger thinks its a decimal.

Therefore when I do int newID = (int)db.Insert(...) it throws a

InvalidCastException

Is this a framework bug or a PetaPoco bug?

  • 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-05-23T01:28:26+00:00Added an answer on May 23, 2026 at 1:28 am

    It’s going to depend on what RDBMS you are connecting to, which you didn’t state.

    Here’s the relevant code from PetaPoco that retrieves the last id and returns it:

    object id;
    switch (_dbType)
    {
        case DBType.SqlServerCE:
            DoPreExecute(cmd);
            cmd.ExecuteNonQuery();
            id = ExecuteScalar<object>("SELECT @@@IDENTITY AS NewID;");
            break;
        case DBType.SqlServer:
            cmd.CommandText += ";\nSELECT SCOPE_IDENTITY() AS NewID;";
            DoPreExecute(cmd);
            id = cmd.ExecuteScalar();
            break;
        case DBType.PostgreSQL:
            if (primaryKeyName != null)
            {
                cmd.CommandText += string.Format("returning {0} as NewID", EscapeSqlIdentifier(primaryKeyName));
                DoPreExecute(cmd);
                id = cmd.ExecuteScalar();
            }
            else
            {
                id = -1;
                DoPreExecute(cmd);
                cmd.ExecuteNonQuery();
            }
            break;
        case DBType.Oracle:
            if (primaryKeyName != null)
            {
                cmd.CommandText += string.Format(" returning {0} into :newid", EscapeSqlIdentifier(primaryKeyName));
                var param = cmd.CreateParameter();
                param.ParameterName = ":newid";
                param.Value = DBNull.Value;
                param.Direction = ParameterDirection.ReturnValue;
                param.DbType = DbType.Int64;
                cmd.Parameters.Add(param);
                DoPreExecute(cmd);
                cmd.ExecuteNonQuery();
                id = param.Value;
            }
            else
            {
                id = -1;
                DoPreExecute(cmd);
                cmd.ExecuteNonQuery();
            }
            break;
        default:
            cmd.CommandText += ";\nSELECT @@IDENTITY AS NewID;";
            DoPreExecute(cmd);
            id = cmd.ExecuteScalar();
            break;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am doing a bulk insert of records into a database from a log
I’m trying to bulk insert data to SQL server express database. When doing bcp
When doing an INSERT with a lot of data, ie: INSERT INTO table (mediumtext_field)
I'm doing an insert query where most of many columns would need to be
I'm doing an INSERT INTO query in order to initialize a new table. The
I'm doing a bulk insert of a CSV file into SQL Server 2005, using
I am doing a SQL Insert to populate my table. I have a unique
I have the field: APP_DATE (smalldatetime) I'm doing this query: INSERT INTO table (TYPE,
We're currently doing some Word automation, and want to be able to insert a
I normally just use mysql_real_escape_string on every variable before inserting to my database, so

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.