sqlalchemy插入資料到mysql異常

來源:互聯網
上載者:User

標籤:pac   pack   uri   ges   資料   mail   php   val   ati   

1. 插入中文報錯:

在資料庫名稱後面添加?charset=utf8
engine = create_engine("mysql+pymysql://root:[email protected]/data?charset=utf8", echo=True)

2. 正常插入,但是提示以下警告:
2018-06-06 16:28:39,789 INFO sqlalchemy.engine.base.Engine SHOW VARIABLES LIKE 'sql_mode'2018-06-06 16:28:39,790 INFO sqlalchemy.engine.base.Engine {}D:\PythonProjects\venv\lib\site-packages\pymysql\cursors.py:170: Warning: (1366, "Incorrect string value: '\\xD6\\xD0\\xB9\\xFA\\xB1\\xEA...' for column 'VARIABLE_VALUE' at row 480")  result = self._query(query)

代碼如下:

from sqlalchemy import Column,Integer,String,DECIMAL,create_engine,DateTimefrom sqlalchemy.orm import sessionmakerfrom sqlalchemy.ext.declarative import declarative_baseBase = declarative_base()class Product(Base):    __tablename__ = 'cj_product_test'    id = Column(Integer,primary_key=True,autoincrement=True)    original_id = Column(String(255))    product_name = Column(String(255))    def __repr__(self):        return "<Product(id='%d', original_id='%s', product_name='%s')>" % (self.id, self.original_id, self.product_name)# 插入中文會報錯,需要在資料庫名稱後面添加?charset=utf8engine = create_engine("mysql+pymysql://root:[email protected]/data?charset=utf8", echo=True)Product.metadata.create_all(engine)DBSession = sessionmaker(bind=engine)product = Product(original_id='432143',product_name='施華洛世奇')session = DBSession()session.add(product)session.commit()session.close()

MySQL自生的一個BUG:
https://www.cnblogs.com/pengyusong/p/6008936.html
https://bugs.mysql.com/bug.php?id=82414

sqlalchemy插入資料到mysql異常

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.