我想動態加載人口普查數據到MySQL數據庫(從.csv文件)使用Python和MySQL連接器。Python2.7 MySQL連接器錯誤LOAD數據本地INFILE
我想不通爲什麼我收到的錯誤:
Traceback (most recent call last):
File "miner.py", line 125, in <module>
cursor.execute(add_csv_file, csv_info)
File "/Library/Python/2.7/site-packages/mysql/connector/cursor.py", line 393, in execute
self._handle_result(self._connection.cmd_query(stmt))
File "/Library/Python/2.7/site-packages/mysql/connector/connection.py", line 586, in cmd_query
statement))
File "/Library/Python/2.7/site-packages/mysql/connector/connection.py", line 508, in _handle_result
raise errors.get_exception(packet)
mysql.connector.errors.ProgrammingError: 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '/Users/afink/Documents/Research/Current Papers & Books/Youth Assessm' at line 1
的輸出字符串之前執行在MySQL命令行接口工作在同一個用戶下的罰款。
似乎它應該是一個簡單的問題,但我卡住了!
def db_connect():
config = {
'user': 'username',
'password': 'pass',
'host': 'localhost',
'database': 'uscensus',
'raise_on_warnings': True,
}
from mysql.connector import errorcode
try:
cnx = mysql.connector.connect(**config)
return cnx
except mysql.connector.Error as err:
if err.errno == errorcode.ER_ACCESS_DENIED_ERROR:
print("Something is wrong with your user name or password")
elif err.errno == errorcode.ER_BAD_DB_ERROR:
print("Database does not exist")
else:
print(err)
else:
cnx.close()
cursor = cnx.cursor()
os.chdir("./")
for files in glob.glob("*.csv"):
add_csv_file = ('''load data local infile '%(cwd)s/%(file_name)s' into table %(table_name)s
columns terminated by ','
optionally enclosed by '\"'
escaped by '\"'
lines terminated by '\\n';''')
# Insert CSV file information
csv_info = {
'cwd': os.getcwd(),
'file_name': files,
'table_name': 'SF1_' + files[2:-8],
}
print add_csv_file % csv_info # Temporary Debug
cursor.execute(add_csv_file, csv_info)
# Make sure data is committed to the database
cnx.commit()
cursor.close()
cnx.close()
非常感謝您的幫助!
這並不適用於我 - 我沒有確定的「查詢」字符串。 我用過的方法似乎在這裏工作: http://dev.mysql.com/doc/connector-python/en/connector-python-example-cursor-transaction.html –