本文实例讲述了Python导入txt数据到mysql的方法。分享给大家供大家参考。具体分析如下:
从TXT文本转换数据到MYSQL数据库,接触一段时间python了 第一次写东西 用的是Python2.7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/usr/bin/python
#coding=utf-8
import _mysql,sys,io
def addCity(prov,city,tel,post):
try :
conn = _mysql.connect( "192.168.1.99" , 'php' , 'php' );
conn.query( "set names utf8" );
conn.query("insert into `domain`.`postcode`(Province,City,TelCode,
PostCode)values( '"+prov+"' , '"+city+"' , '"+tel+"' , '"+post+"' )");
result = conn.use_result();
#print("version:%s" % result.fetch_row()[0])
conn.close()
except _mysql.Error,e:
print ( "Error %d:%s" % (e.args[ 0 ],e.args[ 1 ]))
sys.exit( 1 )
if __name__ = = "__main__" :
f = open ( "data.txt" , "r" )
for line in f:
content = line.split( "," );
print content[ 0 ],content[ 2 ]
addCity(content[ 0 ],content[ 1 ],content[ 2 ],content[ 3 ]);
f.close()
|
希望本文所述对大家的Python程序设计有所帮助。