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

Ask A Question

Stats

  • Questions 95k
  • Answers 95k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Sure, no problem: <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" > <xsl:output indent="yes" />… May 11, 2026 at 7:06 pm
  • Editorial Team
    Editorial Team added an answer I would take a look at this article from highscalability.com.… May 11, 2026 at 7:06 pm
  • Editorial Team
    Editorial Team added an answer If the data source is available through JNDI, you just… May 11, 2026 at 7:06 pm

Related Questions

This query keeps failing with Integrity constraint violation: 1048 Column 'login_name' cannot be null
INSERT INTO tblExcel (ename, position, phone, email) VALUES ('Burton, Andrew', 'Web Developer / Network
To make it short: hibernate doesn't support projections and query by example? I found
I've got a problem that keeps coming up with normalized databases and was looking
In my (PHP) web app, I have a part of my site that keeps

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.