4

尝试插入数据库后发生错误。执行后我收到以下回溯:

Traceback (most recent call last):
File "C:\Python33\Archive\MySQL-teste12.py", line 278, in <module>
inserir(cursor, cx2)
File "C:\Python33\Archive\MySQL-teste12.py", line 196, in inserir
cursor.execute(add_produto, va, input_date, vc)
TypeError: execute() takes from 2 to 4 positional arguments but 5 were given

尝试插入数据库后,错误发生在执行时。这是代码:

def inserir (cursor, db):
menu3 = 0
while menu3 != 99:
    print("""
----- Menu Banco MARK II, v.1.00, MySQL, VR -----

          ----- Menu de Inserção ----


1.Inserir em produto.
2.Inserir em cliente.
3.Inserir em empregado.
4.Inserir em salario.
99.Sair.

    """)
    menu3 = input("Digite sua Opção")

    if menu3 == '1':
        va = input("""

                   Digite o Nome do Produto.

                   """)

        vb = input("""

                   Digite a data de Lançamento do Produto (Ano/mês/dia).

                   """)
        input_date = datetime.strptime(vb, '%Y/%m/%d')

        vc = input("""

                   Digite o Preço do Produto (ex: 20, 20.33).

                   """)

        add_produto = """INSERT INTO produto(nome,
              data_lcm, preco)
              VALUES (%s, %s, %s)"""

        #try:
        cursor.execute(add_produto, va, input_date, vc)
        db.commit()
        print("""
              Inserção concluida com sucesso.

              """)
        #except:
         #   db.rollback()
          #  print("""

           #     Erro.

            #    """)
    if menu3 == '99':
        break

谢谢你的帮助。

4

2 回答 2

22

问题是cursor.execute需要将参数指定为一个元组,而不是单独指定。

尝试更换

        cursor.execute(add_produto, va, input_date, vc)

        cursor.execute(add_produto, (va, input_date, vc))
于 2013-10-08T08:18:59.067 回答
1

你肯定没有做对一些事情。你的论点很多。这是一个例子:

import MySQLdb
db=MySQLdb.connect(passwd="root",db="playful")
cursor=db.cursor()
use = 'python'
c.execute("""SELECT the_error FROM coding WHERE tag < %s""", (use,))

``

于 2013-10-08T07:30:37.077 回答