Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
784 views
in Technique[技术] by (71.8m points)

python - Django form/database error: value too long for type character varying(4)

I'm trying to save a stripe (the billing service) company id [around 200 characters or so] to my database in Django.

The specific error is:

database error: value too long for type character varying(4)

How can I enable Django to allow for longer values?

I saw: value too long for type character varying(N) and: Django fixture fails, stating "DatabaseError: value too long for type character varying(50)"

  • my database is already encoded for UTF-8, according to my webhost.

  • EDIT : I see that one answer recommends making the column wider. Does that involve modifying the PostgreSQL database?

My specific system is Webfaction, CentOs shared machine, Django running on PostgreSQL. I would really appreciate a conceptual overview of what's going on and how I can fix it.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Yes, make the column wider. The error message is quite clear: your 200 characters are too big to fit in a varchar(4).

First, update your model fields max_length attribute from 4 to a number that you expect will be long enough to contain the data you're feeding it.

Next up you have to update the database column itself as django will not automatically update existing columns.

Here are a few options:

1: Drop the database and run syncdb again. Warning: you will lose all your data.

2: Manually update the column via SQL:

Type in python manage.py dbshell to get into your database shell and type in

ALTER TABLE my_table ALTER COLUMN my_column TYPE VARCHAR(200)

3: Learn and use a database migration tool like django south which will help keep your database updated with your model code.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...