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 152899
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T09:42:20+00:00 2026-05-11T09:42:20+00:00

This query keeps failing with Integrity constraint violation: 1048 Column ‘login_name’ cannot be null

  • 0

This query keeps failing with

Integrity constraint violation: 1048 Column ‘login_name’ cannot be null

My insert statement is…

    $insertUserQuery = 'INSERT INTO `users` (                     `login_name`,                     `password`,                      `first_name`,                     `last_name`,                     `company_name`,                     `company_address`,                     `country`,                     `email`,                     `phone_number`,                     `agency_type`,                     `sold_before`,                     `authorised`,                     `current_module`                     )                     VALUES (                    :login_name, :login_password, :first_name, :last_name, :company_name, :company_address, :country, :email, :phone_number, :agency_type, :sold_before, 0, 0);';      $bindings = array(':login_name'      => $loginName,                       ':login_password'  => sha1($password . Config::PASSWORD_SALT),                       ':first_name'      => $firstName,                       ':last_name'       => $lastName,                       ':company_name'    => $companyName,                       ':company_address' => $companyAddress,                       ':country'         => $country,                       ':email'           => $emailAddress,                       ':phone_number'     => $phone,                       ':agency_type'     => null,                       ':sold_before' => null                         );  print_r($bindings);                       Db::query($insertUserQuery, $bindings); 

My database class can be found at another question. The print_r() tells me that the array definitely has a value.

May it have something to do with me using the word ‘password’ which is also a MySQL function?

Does PDO support prepared statements with INSERT in the same fashion as it does with SELECT?

Do I need to quote around the values, example ‘:login_name’?

  • 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. 2026-05-11T09:42:20+00:00Added an answer on May 11, 2026 at 9:42 am

    PDO::query doesn’t support prepared statement syntax does it? Give PDO::prepare and PDOStatement::execute a read. You probably want something like:

    $insertUserQuery = 'INSERT INTO `users` (`login_name`, ...) ' .     'VALUES (:login_name, ...);'; $bindings = array(':login_name' => $loginName, ...); $stmt = Db::prepare($insertUserQuery); $stmt->execute($bindings); 

    You can also call $stmt->bindValue() instead of building an array of bindings. I think that explicitly binding each value is a little nicer since you can verify the types right there.

    EDIT: sorry jcinacio, I didn’t see that your comment was almost identical until after I posted.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

What's wrong with this query: INSERT INTO Users( weight, desiredWeight ) VALUES ( 160,
My application keeps running into Timeout Expired SqlExceptions. The thing is that this query
I have an insert query for MySQL that looks like this: INSERT INTO table
This query works great: var pageObject = (from op in db.ObjectPermissions join pg in
This query is related to this one I asked yesterday. I have a radio
this query will just one row as a result myDataContext db = new myDataContext();
In this query: SELECT COUNT(*) AS UserCount, Company.* FROM Company LEFT JOIN User ON
I have this query in sql server 2000: select pwdencrypt('AAAA') which outputs an encrypted
I have this query statement and want to only get records that has a
In SQL server 2005 this query select len(cast('the quick brown fox jumped over the

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.