Jump to content

Cannot insert null error


rbragg

Recommended Posts

<?php
$queryInsertParent4Student = "
INSERT into schema.STUDENT (parent_num)
SELECT parent_num
FROM schema.PARENT
WHERE email = '" . $_SESSION['pMail'] . "'";
?>

 

Why does the above give me this error:

 

ORA-01400: cannot insert NULL

 

... when the session is tested and set AND there IS a parent_num for this email in the db?  ??? I think I'm just being dumb here. Thanks.

Link to comment
https://forums.phpfreaks.com/topic/88263-cannot-insert-null-error/
Share on other sites

What might help you is to echo out the value of the query string you've created.

 

echo "\n";

 

View the source for the page and see if the query is what you expect, and that it's something you can run in sqlplus.  I'm thinking it isn't.

  • 2 months later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.