- 论坛徽章:
- 0
|
看了看ibm网站对sqlite的介绍
IDLE 1.1.1
>;>;>; import MySQLdb
>;>;>; conn=MySQLdb.connect(host='localhost',user='root',passwd='root',db='test')
>;>;>; c=conn.cursor()
>;>;>; c.execute('create database sss')
1L
>;>;>; c.execute('use sss')
0L
>;>;>; c.execute('create table a(a varchar(100))')
0L
>;>;>; c.execute('insert into a values("中国" ')
1L
>;>;>; c.execute('select * from a ')
1L
>;>;>; a=c.fetchall()
>;>;>; for i in a:
print i[0]
中国
>;>;>; c.execute('insert into a values("耄耋" ')
1L
>;>;>; c.execute('select * from a ')
2L
>;>;>; a=c.fetchall()
>;>;>; for i in a:
print i[0]
中国
耄耋
>;>;>; |
|