Inserting JSON into MySQL using Python

前端 未结 9 882
我在风中等你
我在风中等你 2020-12-08 03:50

I have a JSON object in Python. I am Using Python DB-API and SimpleJson. I am trying to insert the json into a MySQL table.

At moment am getting errors and I believ

9条回答
  •  無奈伤痛
    2020-12-08 03:57

    The error may be due to an overflow of the size of the field in which you try to insert your json. Without any code, it is hard to help you.

    Have you considerate a no-sql database system such as couchdb, which is a document oriented database relying on json format?

提交回复
热议问题