日本综合一区二区|亚洲中文天堂综合|日韩欧美自拍一区|男女精品天堂一区|欧美自拍第6页亚洲成人精品一区|亚洲黄色天堂一区二区成人|超碰91偷拍第一页|日韩av夜夜嗨中文字幕|久久蜜综合视频官网|精美人妻一区二区三区

RELATEED CONSULTING
相關(guān)咨詢(xún)
選擇下列產(chǎn)品馬上在線溝通
服務(wù)時(shí)間:8:30-17:00
你可能遇到了下面的問(wèn)題
關(guān)閉右側(cè)工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營(yíng)銷(xiāo)解決方案
創(chuàng)新互聯(lián)Python教程:python如何導(dǎo)入txt數(shù)據(jù)庫(kù)?

python將TXT數(shù)據(jù)導(dǎo)入數(shù)據(jù)庫(kù)的方法代碼如下:

#!/usr/bin/python
#coding=utf-8

import _mysql,sys,time
#讀入數(shù)據(jù)函數(shù)
def add_data(id,name,created_time):
    try:
        conn=_mysql.connect('127.0.0.1','root','')
        conn.query("set names utf8")
        conn.query("insert into mysql.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()
    print time.ctime()
	#讀出第一行數(shù)據(jù),作為數(shù)據(jù)表的段名
    line=f.readline()
    content=line.strip().split(",")
    conn0=_mysql.connect('127.0.0.1','root','')
    print 'connection is builded succesfully'
    conn0.query("drop table if exists mysql.test3")
    conn0.query("create table mysql.test3(%s varchar(90),%s varchar(90),%s varchar(90))"%(content[0][1:-1],content[1][1:-1],content[2][1:-1]))
    conn0.close()
    #運(yùn)用next函數(shù),讓for循環(huán)從第二行開(kāi)始讀數(shù)據(jù)
    next(f)
    for line in f:
	   #做一些處理,讓每一段分開(kāi),放置在一個(gè)列表中
       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()
    print time.ctime()
	#計(jì)算導(dǎo)入數(shù)據(jù)的時(shí)間
    print 'importing time is %f'%(time2-time1)

當(dāng)前名稱(chēng):創(chuàng)新互聯(lián)Python教程:python如何導(dǎo)入txt數(shù)據(jù)庫(kù)?
分享網(wǎng)址:http://www.dlmjj.cn/article/ccoosij.html