真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

使用python+txt構(gòu)建測試數(shù)據(jù)

一、背景

網(wǎng)站建設(shè)哪家好,找成都創(chuàng)新互聯(lián)!專注于網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、小程序制作、集團企業(yè)網(wǎng)站建設(shè)等服務(wù)項目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了興和免費建站歡迎大家使用!

    有4張表,每張表要插入多條測試數(shù)據(jù)。如若還有同種需求,于是寫了一個腳本,來添加數(shù)據(jù)。

二、代碼

#--coding:utf8--
import pyMySQL


class InsertTestData(object):
    STUDENT_FILE = 'Student.txt'
    COURSE_FILE = 'Course.txt'
    TEACHER_FILE = 'Teacher.txt'
    SCORE_FILE = 'Score.txt'

    def __init__(self):
        self.connect = pymysql.Connect(
            host = 'localhost',
            port = 3306,
            user = 'root',
            # passwd = ' ',
            charset = 'utf8'
        )
        self.database = 'execersise_test'

    def read_lines(self, filename):
        dict = {}
        file_name = filename.split('.')[0]
        dict['file_name'] = file_name
        with open(filename) as f:
            lines = f.readlines()
        dict['file_content'] = lines
        return dict

    def connect_mysql(self):
        cursor = self.connect.cursor()
        return cursor

    def close_mysql(self):
        self.connect.close()

    def close_curser(self):
        self.connect_mysql().close()

    def add_test_datas(self, file_obj):
        file = file_obj
        file_name = file['file_name']
        title = file['file_content'][0].strip()
        datas = file['file_content'][1:]
        content_len = len(datas)
        data = ''
        counter = 1
        for tmpdata in datas:
            if counter == content_len:
                data += '(' + tmpdata.strip() + ');'
            else:
                data += '(' + tmpdata.strip() + '),'
            counter += 1
        sql = 'insert into ' + self.database + '.' + file_name + ' (' + title + ') values '+ data
        try:
            # self.connect_mysql().executemany(sql)
            self.connect_mysql().execute(sql)
        except Exception as e:
            print('add_' + file_name + ' error: ', e)
        self.connect.commit()
        self.close_curser()

if __name__ == '__main__':
    testdata = InsertTestData()
    testdata.add_test_datas(testdata.read_lines(InsertTestData.STUDENT_FILE))
    testdata.add_test_datas(testdata.read_lines(InsertTestData.TEACHER_FILE))
    testdata.add_test_datas(testdata.read_lines(InsertTestData.COURSE_FILE))
    testdata.add_test_datas(testdata.read_lines(InsertTestData.SCORE_FILE))

    在main函數(shù)中,只需要指定要讀取的文件,即可快速插入測試數(shù)據(jù)。

    為了便于構(gòu)造sql語句,定義的數(shù)據(jù)文件格式如下:

`SID`,`CID`,`Degree` 
'103' , '3-245' , '86'
'105' , '3-245' , '75'
'109' , '3-245' , '68'
'103' , '3-105' , '92'
'105' , '3-105' , '88'
'109' , '3-105' , '76'
'101' , '3-105' , '64'
'107' , '3-105' , '91'
'108' , '3-105' , '78'
'101' , '6-166' , '85'
'107' , '6-166' , '79'
'108' , '6-166' , '81'

三、遇到的問題

  1. UnicodeDecodeError: 'gbk' codec can't decode byte 0xbf in position 2: illegal multibyte sequence

    原因:文件編碼不是ANSI;

    解決方法:將文件用notepad打開,另存,編碼設(shè)置為ANSI格式。

  2. 入庫的中文信息亂碼,顯示為'?'

    原因:在創(chuàng)建數(shù)據(jù)庫時,未將charset設(shè)置為utf8;

    解決方法:重建數(shù)據(jù)庫,重建表,數(shù)據(jù)庫和表的charset都設(shè)置為utf8

  3. 如何將sql的values數(shù)據(jù)構(gòu)造成‘(),(),();‘的格式

    解決方法:增加計數(shù)器,當(dāng)讀取到最后一行時,以‘;’結(jié)尾

  4. 如何通過讀取一個文件,同時獲取要操作的表名稱、列名、values

    解決方法:

    數(shù)據(jù)文件的文件名稱,定義成表名;

    數(shù)據(jù)文件的titile,即第一行內(nèi)容,定義成表的列;

    數(shù)據(jù)文件的內(nèi)容,即第一行之后的內(nèi)容,定義成表的數(shù)據(jù)。


分享文章:使用python+txt構(gòu)建測試數(shù)據(jù)
標(biāo)題路徑:http://weahome.cn/article/gjcjcs.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部