系统城装机大师 - 固镇县祥瑞电脑科技销售部宣传站!

当前位置:首页 > 数据库 > SQLite > 详细页面

在SQLite-Python中实现返回、查询中文字段的方法

时间:2019-12-04来源:系统城作者:电脑系统城

博主在这个问题上卡了挺久的,贴出来解决方法帮助需要的朋友,直接上代码(测试环境:win10+Python2.7):


 
  1. # coding=utf-8
  2.  
  3. import sqlite3
  4.  
  5. with sqlite3.connect(":memory:") as conn:
  6. try:
  7. init_sql = " create table test (id integer primary key ,name text(200) not null);" \
  8. " insert into test (name) values ('小居居');" \
  9. " insert into test (name) values ('大居居');"
  10. conn.executescript(init_sql)
  11. except Exception as e:
  12. conn.rollback()
  13. raise e
  14. else:
  15. conn.commit()
  16. conn.text_factory = str # 此处是关键,sqlite默认文本存取是Unicode
  17. try:
  18. for row in conn.execute(" select * from test where name = ?",("大居居",)):
  19. print row[1],type(row[1])
  20. except Exception as e:
  21. raise e

结果:


 
  1. 大居居 <type 'str'>

以上这篇在SQLite-Python中实现返回、查询中文字段的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持我们。

分享到:

相关信息

系统教程栏目

栏目热门教程

人气教程排行

站长推荐

热门系统下载