私はpythonとSQLの初心者です。 私のデータベースには、画像へのパスを保存したフィールドが含まれています。 各パスをPythonで変数に代入したい。 私は最初の行のパスだけを保存できます。 これは私のコードpythonを使用してSQLデータベースからデータを取得
import pymysql
from arcpy import env
env.workspace = "D:/year 4 semester 1/Python/Data/"
conn= pymysql.connect(host='localhost',user='root',password='',db='research')
cursor = conn.cursor()
cursor.execute ("select Path from sourcedata")
data = cursor.fetchmany()
for row in data :
a= row[0]
print a
あるしかし、私は他のすべての関連するテキスト
for row in data :
a= row[0]
b = row[1]
c = row[2]
print a
含む方法を以下しようとすると、次のエラーは、あなたがそれを作るためにprint a
文をインデントする必要が
IndexError: tuple index out of range