python如何导入txt数据库?
python将TXT数据导入数据库的方法代码如下:
#!/usr/bin/python
#coding=utf-8
import_mysql,sys,time
#读入数据函数
defadd_data(id,name,created_time):
try:
conn=_mysql.connect('127.0.0.1','root','')
conn.query("setnamesutf8")
conn.query("insertintomysql.test3(%s,%s,%s)values('%s','%s','%s')"%('object_id','object_name','created',id,name,created_time))
result=conn.use_result()
conn.close()
except_mysql.Error,e:
print("error%d:%s"%(e.args[0],e.args[1]))
sys.exit(1)
if__name__=="__main__":
f=open("/opt/testdata/aaa.txt","r")
time1=time.time()
printtime.ctime()
#读出第一行数据,作为数据表的段名
line=f.readline()
content=line.strip().split(",")
conn0=_mysql.connect('127.0.0.1','root','')
print'connectionisbuildedsuccesfully'
conn0.query("droptableifexistsmysql.test3")
conn0.query("createtablemysql.test3(%svarchar(90),%svarchar(90),%svarchar(90))"%(content[0][1:-1],content[1][1:-1],content[2][1:-1]))
conn0.close()
#运用next函数,让for循环从第二行开始读数据
next(f)
forlineinf:
#做一些处理,让每一段分开,放置在一个列表中
content=line.strip().split(",")
add_data(id=content[0][1:-1],name=content[1][1:-1],created_time=content[2][1:-1])
f.close()
time2=time.time()
printtime.ctime()
#计算导入数据的时间
print'importingtimeis%f'%(time2-time1)
以上内容为大家介绍了python如何导入txt数据库?希望对大家有所帮助,如果想要了解更多Python相关知识,请关注IT培训机构:千锋教育。
猜你喜欢LIKE
相关推荐HOT
python gensim库是什么?
pythongensim库是什么?gensim库在文本监控里,首先在稳定上,坚如磐石,不用担心稳定性问题,其次,时效性很强,执行能力很快,经常在最重要的...详情>>
2023-11-06 21:48:19python中getattr()是什么?
python中getattr()是什么?本文教程操作环境:windows7系统、Python3.9.1,DELLG3电脑。1、getattr()用来获取对象中的属性值;获取对象object的属...详情>>
2023-11-06 21:41:07python标识符如何使用?
python标识符如何使用?为了给编程中函数、类等进行区分,会赋予它们不同的名称。我们把这种命名叫做标识符,也可以理解为符号的标记。当然这种...详情>>
2023-11-06 21:33:55Python IDE之Thonny的介绍
pythonIDE之Thonny的介绍今天要介绍的IDE,可能没用过,甚至可能没听说过。叫Thonny,是塔尔图大学开发的,适合程序员新手。它的界面很容易使用...详情>>
2023-11-06 20:54:19热门推荐
如何使用python中的help函数?
沸如何使用python的callable函数?
热python gensim库是什么?
热python中xluntils库是什么?
新python中getattr()是什么?
python中的win32com库是什么?
python标识符如何使用?
如何使用python中schedule模块?
python中ruamel.yaml模块是什么?
defaultdict在python中计算键值的和
python sleep和wait对比分析
python中字符串转成数字的几种方法
python中SocketServer是什么?
python中如何使用@contextmanage?