当前位置:  开发笔记 > 编程语言 > 正文

python错误:靠近"From":语法错误

如何解决《python错误:靠近"From":语法错误》经验,为你挑选了1个好方法。

我试图在数据库中的单独列中插入6个值,并且在运行我的代码时,我接近"From"语法错误可以有人帮忙吗?

def setup_transactions(db, filename):
    '''(str, str) -> NoneType
    Create and populate the Transactions table for database db using the
    contents of the file named filename.'''

    data_file = open(filename)
    con =  sqlite3.connect(db)
    cur = con.cursor()

    # create and populate the table here
    cur.execute('CREATE TABLE Transactions(Date TEXT, Number TEXT, Type     TEXT, From TEXT, To TEXT, Amount REAL)')

    for line in data_file:
        data = line.split()
        cur.execute('INSERT INTO Accounts VALUES (?, ?, ?, ?, ?, ?)', (data[0], data[1], data[2], data[3], data[4], data[5]))
    data_file.close()
    cur.close()
    con.commit()
    con.close()

错误是这样的:

Traceback (most recent call last):

Python Shell,提示2,第1行文件"/ Users/user1/Desktop/assignment 2/banking.py",第64行,在cur.execute中('CREATE TABLE事务(日期文本,数字文本,类型文本,从文本, To TEXT,Amount REAL)')sqlite3.OperationalError:near"From":语法错误



1> Busturdust..:

cur.execute('CREATE TABLE Transactions(Date TEXT, Number TEXT, Type TEXT, From TEXT, To TEXT, Amount REAL)')

您有一个名为From的列.从是一个sql关键字,我会避免使用它,因为它可能会导致语法错误

尝试更具描述性的内容

cur.execute('CREATE TABLE Transactions(date_created TEXT, current_Number TEXT, record_type TEXT, from_somewhere TEXT, to_somewhere TEXT, amount REAL)')

推荐阅读
LEEstarmmmmm
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有