文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

python中MySQLdb连接数据怎么用

2023-06-29 15:42

关注

这篇文章主要介绍了python中MySQLdb连接数据怎么用,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。

1.文件结构

python中MySQLdb连接数据怎么用

MySQLdb和pymysql的使用差不多阅读的小伙伴可以自己尝试实现

2.实验效果

python中MySQLdb连接数据怎么用
python中MySQLdb连接数据怎么用
python中MySQLdb连接数据怎么用
python中MySQLdb连接数据怎么用
python中MySQLdb连接数据怎么用
python中MySQLdb连接数据怎么用
python中MySQLdb连接数据怎么用
python中MySQLdb连接数据怎么用
python中MySQLdb连接数据怎么用
python中MySQLdb连接数据怎么用

3.主文件:main.py

import MySQLdbfrom flask_wtf import FlaskFormfrom wtforms.validators import DataRequired,EqualTo,Lengthfrom wtforms import StringField,SubmitField,PasswordField,TelFieldfrom flask import Flask,render_template,redirect,url_for,abort,request,jsonifyapp=Flask(__name__)app.secret_key='stu'#连接数据mysqlconn=MySQLdb.connect(    host='127.0.0.1',    port=3306,    user='root',    password='root',    db='main')cur=conn.cursor()#增加用户表单class StuForm(FlaskForm):    name=StringField(label='用户名: ',validators=[DataRequired()])    password=PasswordField(label='密码: ',validators=[DataRequired(),Length(min=3,max=8)])    submit=SubmitField(label='提交')#搜索用户表单class SStuForm(FlaskForm):    name = StringField(label='用户名: ', validators=[DataRequired()])    submit=SubmitField(label='提交')#更新用户表单class UStuForm(FlaskForm):    name = StringField(label='用户名: ', validators=[DataRequired()])    password = PasswordField(label='密码: ', validators=[DataRequired(), Length(min=3, max=8)])    submit = SubmitField(label='提交')#删除用户表单class DStuForm(FlaskForm):    name = StringField(label='用户名: ', validators=[DataRequired()])    submit = SubmitField(label='提交')def CreateTab():    sql="create table student(name varchar(20),password varchar(30))"    cur.execute(sql)    conn.commit()    cur.close()@app.route('/add',methods=['POST','GET'])def add():    stuform=StuForm()    if request.method=='POST':        if stuform.validate_on_submit():            name=stuform.name.data            password=stuform.password.data            print('name: {}'.format(name))            print('password: {}'.format(password))            sql=f"insert into student(name,password) values('{name}','{password}')"            cur.execute(sql)            conn.commit()            return jsonify('Add Successed!')    return render_template('add.html',stuform=stuform)@app.route('/search',methods=['POST','GET'])def search():    sstuform=SStuForm()    if request.method=='POST':        if sstuform.validate_on_submit():            name=sstuform.name.data            sql=f"select count(name) from student where name='{name}'"            cur.execute(sql)            conn.commit()            count=cur.fetchone()[0]            if count<=0:                return jsonify('The User is not exist!')            else:                sql=f"select name,password from student where name='{name}'"                cur.execute(sql)                conn.commit()                result=cur.fetchall()                return jsonify(result)    return render_template('search.html',sstuform=sstuform)@app.route('/update',methods=['POST','GET'])def update():    ustuform=UStuForm()    if request.method=='POST':        if ustuform.validate_on_submit():            name = ustuform.name.data            password=ustuform.password.data            sql = f"select count(name) from student where name='{name}'"            cur.execute(sql)            conn.commit()            count = cur.fetchone()[0]            if count <= 0:                return jsonify('The User is not exist!')            else:                sql = f"update student set name='{name}',password='{password}'  where name='{name}'"                cur.execute(sql)                conn.commit()                return jsonify('Update Successed!')    return render_template('update.html',ustuform=ustuform)@app.route('/delete',methods=['POST','GET'])def delete():    dstuform=DStuForm()    if request.method=='POST':        if dstuform.validate_on_submit():            name=dstuform.name.data            sql = f"select count(name) from student where name='{name}'"            cur.execute(sql)            conn.commit()            count = cur.fetchone()[0]            if count <= 0:                return jsonify('The User is not exist!')            else:                sql=f"delete from student where name='{name}'"                cur.execute(sql)                conn.commit()                return jsonify('Delete Successed!')    return render_template('delete.html',dstuform=dstuform)@app.route('/function',methods=['POST','GET'])def function():    if request.method=='POST':        submit1 = request.form.get('submit1')        submit2 = request.form.get('submit2')        submit3 = request.form.get('submit3')        submit4 = request.form.get('submit4')        print('submit1: {}'.format(submit1))        print('submit2: {}'.format(submit2))        print('submit3: {}'.format(submit3))        print('submit4: {}'.format(submit4))        if submit1 is not None:            return redirect(url_for('add'))        if submit2 is not None:            return redirect(url_for('search'))        if submit3 is not None:            return redirect(url_for('update'))        if submit4 is not None:            return redirect(url_for('delete'))    return render_template('base.html')if __name__ == '__main__':    print('Pycharm')    # CreateTab()    app.run(debug=True)

4.base.html文件

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>Title</title>    <style>        .h2{            position:relative;            margin:auto;            width:500px;            height:50px;            margin-top:100px;            margin-left:650px;        }        .form {            position:relative;            width:500px;            height:50px;            margin:auto;            margin-top:50px;            border:2px solid #000000;            color:#000000;            font-size:20px;            font-weight:400;        }        .form1{            position:absolute;            margin-top:10px;            margin-left:80px;        }        .form2{            position:absolute;            margin-top:10px;            margin-left:180px;        }        .form3{            position:absolute;            margin-top:10px;            margin-left:280px;        }        .form4{            position:absolute;            margin-top:10px;            margin-left:380px;        }    </style></head><body>    <div class="h2">        <h2>功能选择</h2>    </div>    <div class="form">        <form class="form1" action="http://127.0.0.1:5000/add" method="POST">            <input type="submit" name="submit1" value="添加">        </form>        <form class="form2" action="http://127.0.0.1:5000/search" method="POST">            <input type="submit" name="submit2" value="搜索">        </form>        <form class="form3" action="http://127.0.0.1:5000/update" method="POST">            <input type="submit" name="submit3" value="更新">        </form>        <form class="form4" action="http://127.0.0.1:5000/delete" method="POST">            <input type="submit" name="submit4" value="删除">        </form>    </div></body></html>

5.update.html文件

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>Insert</title>    <style>        div{          width:255px;          height:100px;          margin:auto;          margin-top:200px;          border:2px solid #000000;          font-size:20px;          font-weight:400px;          background:#FFFFFF;        }        .submit{            margin-top:10px;            margin-left:100px;        }    </style></head><body>  <div>      <form action="" method="POST">          {{ustuform.csrf_token()}}          {{ustuform.name.label}}{{ustuform.name}}<br>          {{ustuform.password.label}}{{ustuform.password}}<br>          <input class="submit" type="submit" name="submit" value="更新">      </form>  </div></body></html>

6.delete.html文件

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>Insert</title>    <style>        div{          width:255px;          height:100px;          margin:auto;          margin-top:200px;          border:2px solid #000000;          font-size:20px;          font-weight:400px;          background:#FFFFFF;        }        .submit{            margin-top:10px;            margin-left:100px;        }    </style></head><body>  <div>      <form action="" method="POST">          {{dstuform.csrf_token()}}          {{dstuform.name.label}}{{dstuform.name}}<br>          <input class="submit" type="submit" name="submit" value="删除">      </form>  </div></body></html>

7.search.html文件

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>Insert</title>    <style>        div{          width:255px;          height:100px;          margin:auto;          margin-top:200px;          border:2px solid #000000;          font-size:20px;          font-weight:400px;          background:#FFFFFF;        }        .submit{            margin-top:10px;            margin-left:100px;        }    </style></head><body>  <div>      <form action="" method="POST">          {{sstuform.csrf_token()}}          {{sstuform.name.label}}{{sstuform.name}}<br>          <input class="submit" type="submit" name="submit" value="搜索">      </form>  </div></body></html>

感谢你能够认真阅读完这篇文章,希望小编分享的“python中MySQLdb连接数据怎么用”这篇文章对大家有帮助,同时也希望大家多多支持编程网,关注编程网行业资讯频道,更多相关知识等着你来学习!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-数据库
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯