Python Forum
error while inserting values into a table from form in flask in postgreSQL
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
error while inserting values into a table from form in flask in postgreSQL
#1
my question here
forms.py---
class SignUpForm(Form):
first_name = StringField('First name', validators=[DataRequired("Please enter your first name")])
last_name = StringField('Last name', validators=[DataRequired("Please enter your last name")])
email = StringField('email', validators=[DataRequired("Please enter valid email address"), Email("Enter valid email address")])
password = PasswordField('password', validators=[DataRequired("Please enter your password"),Length(min=6, message="Password must be minimum 6 characters")])
submit=SubmitField('Sign Up')
python code -  
     newuser = USERS(form.first_name.data, form.last_name.data, form.email.data, form.password.data )
     db.session.add(newuser)
     db.session.commit()
     return 'Success!'
Error --
Error:
sqlalchemy.exc.IntegrityError sqlalchemy.exc.IntegrityError: (psycopg2.IntegrityError) null value in column "FIRST_NAME" violates not-null constraint DETAIL:  Failing row contains (11, null, null, null, null). [SQL: 'INSERT INTO "USERS" ("FIRST_NAME", "LAST_NAME", "EMAIL_ID", "PWDHASH") VALUES (%(FIRST_NAME)s, %(LAST_NAME)s, %(EMAIL_ID)s, %(PWDHASH)s) RETURNING "USERS"."USER_ID"'] [parameters: {'FIRST_NAME': None, 'LAST_NAME': None, 'EMAIL_ID': None, 'PWDHASH': None}]
Reply
#2
(Jun-03-2017, 07:55 AM)sahilsiddharth Wrote: sqlalchemy.exc.IntegrityError: (psycopg2.IntegrityError) null value in column "FIRST_NAME" violates not-null constraint
Don't insert nulls. You're welcome :)
Reply
#3
Quote:class SignUpForm(Form):
Flask-WTF has changes Form to FlaskForm.
Then not getting any values from client side form submit and insert to PostgreSQL will be wrong.
class SignUpForm(FlaskForm):
Reply
#4
After changing from Form to FlaskForm , getting same error . I can print the value of form.first_name.data, form.last_name.data, form.email.data, form.password.data but when it is going to add into the table , giving error .

Do i have to do migration in Flask like we have to do in django.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Beta6 of my password flask-wtf web form robertkwild 3 1,104 Jul-02-2024, 10:30 AM
Last Post: robertkwild
  Show powershell errors in flask-wtf web form robertkwild 14 2,450 Jun-30-2024, 03:15 PM
Last Post: robertkwild
  Running powershell command in flask wtf form robertkwild 10 2,197 Jun-27-2024, 09:49 AM
Last Post: robertkwild
  using split in my flask wtf form robertkwild 1 744 Jun-11-2024, 05:19 PM
Last Post: deanhystad
  making a form purely with flask-wtf robertkwild 15 3,105 Jun-01-2024, 11:53 AM
Last Post: robertkwild
  Error (Errno 2), File upload with the Flask framework and a public IP Username_Python1 0 1,220 Mar-28-2024, 01:46 PM
Last Post: Username_Python1
  How to Connect to PostgreSQL Through Jump Server and SSH Tunnel using Python? nishans 1 3,816 Jan-02-2024, 10:37 AM
Last Post: khanzain
  pyscript index error while calling input from html form pyscript_dude 2 1,882 May-21-2023, 08:17 AM
Last Post: snippsat
  python script for inserting rows into hbase table lravikumarvsp 7 8,621 Mar-24-2023, 04:44 AM
Last Post: parth_botadara
Photo How to select NULL and blank values from MySQL table into csv python300 9 5,096 Dec-27-2022, 09:43 PM
Last Post: deanhystad

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020