学习python和数据库musql连接遇到的问题

1.python打开当地数据库连接出错:
代码:

 db=pymysql.connect('localhost','root','Qiaokeli123','test')

报错原因:

 TypeError: __ init __() takes 1 positional argument but 5 were given

解决办法:指定用户密码等。

db=pymysql.connect(user='root',passwd='Qiaokeli123',database='test')

2.在python中使用datetime在数据库中插入日期,出错
代码:

sql = """
    insert into employee(first_name,last_name,age,sex,income
    ,create_time) value("张","天爱",30,'女',100000,
    datetime.datetime.now())
    """
      try:
        cursor.execute(sql)
        db.commit()
        print("插入成功")
    except Exception as e:
        print("插入失败:%s"%e)
        db.rollback()
    finally:
        db.close()

报错原因:

创建失败:(1064, "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 '())' at line 1")

解决办法:
(1)直接给一个日期值

sql = """
    insert into employee(first_name,last_name,age,sex,income
    ,create_time) value("张","天爱",30,'女',100000,
    '2021-02-27')
    """

(2)插入当前时间:now()

sql = """
   insert into employee(first_name,last_name,age,sex,income
   ,create_time) value("张","天爱",30,'女',100000,
  now())
   """
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值