繁体   English   中英

1次迭代后用于循环删除的Python

[英]Python for loop dropping after 1 iteration

我是python的新手,并认为我会练习所学的知识来完成一点任务。 本质上,我是从网络提取的.csv文件中将认知相机数据插入数据库中。 遗憾的是,我不得不忽略所有连接详细信息,因为只能从我的工作计算机上访问它,这意味着该脚本无法运行。 到问题了! 我有一个for循环,该循环遍历系统中的摄像机,并运行以下脚本:

 #!/usr/bin/python
import pymssql
import urllib2
import sys
import getpass
import csv
import os

attempts = 0 #connection attempt counter

#check db connection with tsql -H cabernet.ad.uow.edu.au -p 1433 -U ADUOW\\mbeavis -P mb1987 -D library_gate_counts

server = "*****" #sever address
#myUser = 'ADUOW\\' + raw_input("User: ")#  User and password for server. Will this be needed when the script runs on the server? # Ask David
#passw = getpass.getpass("Password: ")          

while attempts < 3: # attempt to connect 3 times
    try: #try connection
        conn = pymssql.connect(server = server, user = '****', password = '****', database = "***", port='1433',timeout = 15, login_timeout = 15)
        break
    except pymssql.Error as e: #if connection fails print error information
        attempts += 1
        print type(e)
        print e.args

camCursor = conn.cursor() #creates a cursor on the database

camCursor.execute("SELECT * FROM dbo.CAMERAS") #Selects the camera names and connection details 



for rows in camCursor:
    print rows

一切都很好,并且循环按预期运行,但是当我实际尝试对数据执行任何操作时,循环运行一次并结束,这是完整的脚本:

    #!/usr/bin/python
import pymssql
import urllib2
import sys
import getpass
import csv
import os

attempts = 0 #connection attempt counter

#check db connection with tsql -H cabernet.ad.uow.edu.au -p 1433 -U ADUOW\\mbeavis -P mb1987 -D library_gate_counts

server = "*****" #sever address
#myUser = 'ADUOW\\' + raw_input("User: ")#  User and password for server. Will this be needed when the script runs on the server? # Ask David
#passw = getpass.getpass("Password: ")          

while attempts < 3: # attempt to connect 3 times
    try: #try connection
        conn = pymssql.connect(server = server, user = '****', password = '****', database = "***", port='1433',timeout = 15, login_timeout = 15)
        break
    except pymssql.Error as e: #if connection fails print error information
        attempts += 1
        print type(e)
        print e.args

camCursor = conn.cursor() #creates a cursor on the database

camCursor.execute("SELECT * FROM dbo.CAMERAS") #Selects the camera names and connection details 



for rows in camCursor:
    print rows
    cameraName = str(rows[0]) #converts UNICODE camera name to string
    connectionDetails = str(rows[1]) #converts UNICODE connection details to string

    try: #try connection
        #connect to webpage, this will be changed to loop through the entire range of cameras, which will
        #have their names and connection details stored in a seperate database table
        prefix = "***"
        suffix = "**suffix"
        response = urllib2.urlopen(prefix + connectionDetails + suffix, timeout = 5)
        content = response.read() #read the data for the csv page into content
        f = open( "/tmp/test.csv", 'w' ) #open a file for writing (test phase only)
        f.write( content ) #write the data stored in content to file
        f.close() #close file
        print content #prints out content
        with open( "/tmp/test.csv", 'rb' ) as csvFile: #opens the .csv file previously created
            reader = csv.DictReader(csvFile) #reader object of DictReader, allows for the first row to be the dictionary keys for the following rows
            for row in reader: #loop through each row
                start = row['Interval start']
                end = row['Interval stop']
                camName = row['Counter name']
                pplIn = int(row['Pedestrians coming in'])
                pplOut = int(row['Pedestrians going out'])
                insertCursor = conn.cursor()
                insert = "INSERT INTO dbo.COUNTS VALUES (%s, %s, %d, %d)"
                insertCursor.execute(insert, (camName, start, pplIn, pplOut))
                conn.commit()
    except urllib2.URLError as e: #catch URL errors
        print type(e)
        print e.args
    except urllib2.HTTPError as e: #catch HTTP erros
        print type(e)
        print e.code

我一直抓挠着头,因为我看不到为什么会有问题,但是也许我只需要重新审视一下。 任何帮助都将为您加油!

您是否尝试过做类似的事情

queryResult = camCursor.execute("SELECT * FROM dbo.CAMERAS")

for rows in queryResult:
    ...

我猜这可能会解决问题,这可能是您试图遍历游标而不是结果的事实。

您可能还会发现这种方式很有趣:

camCursor.execute("SELECT * FROM dbo.CAMERAS")

for rows in camCursor.fetchall():
    ...

资料来源: https : //docs.python.org/2/library/sqlite3.html

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM