Skip to main content

make it easy to use pymysql

Project description

fastmysql

介绍

简单快速的使用mysql

软件架构

软件架构说明

安装教程

  1. pip安装
pip3 install fastmysql
  1. pip安装(使用淘宝镜像加速)
pip3 install fastmysql -i https://mirrors.aliyun.com/pypi/simple

使用说明

  1. demo
import fastmysql
query_res = fastmysql.query_table_all_data(
    db_name='test', 
    tb_name='test'
)

# 获取建表语句
res = fastmysql.show_create_table(
    db_name='test',
    tb_name='test'
)
  1. 防止sql注入: 写法

cursor.execute('insert into user (name,password) value (?,?)',(name,password))   或者

cursor.execute('insert into user (name,password) value (%s,%s)',(name,password))   %s与?都可以作为sql语句的占位符,它们作为占位符的功能是没有区别的,mysql.connector用 %s 作为占位符;pymysql用 ? 作为占位符。但是注意不要写成

cursor.execute('insert into user (name,password) value (?,?)'%(name,password))   这种写法是直接将参数拼接到sql语句中,这样数据库就容易被sql注入攻击,比如

cursor.execute('select * from user where user=%s and password=%s'%(name,password))   要是name和password都等于'a or 1=1',那么这个语句会把整个user表都查询出来

  1. 默认环境
  • 默认使用的环境文件为:mysql.env

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fastmysql-0.2.7.tar.gz (16.2 kB view details)

Uploaded Source

Built Distribution

fastmysql-0.2.7-py3-none-any.whl (16.9 kB view details)

Uploaded Python 3

File details

Details for the file fastmysql-0.2.7.tar.gz.

File metadata

  • Download URL: fastmysql-0.2.7.tar.gz
  • Upload date:
  • Size: 16.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.10

File hashes

Hashes for fastmysql-0.2.7.tar.gz
Algorithm Hash digest
SHA256 52c54600aca0ad89835c07774c8d789aab84b2bd5a00266e64423e45bece8d5d
MD5 b807484f3bf2a762d428d2d5a18dc338
BLAKE2b-256 7ee440a64214547eb0385abce660117dbd6e6af1d950b295a0b1c83bd0c32831

See more details on using hashes here.

Provenance

File details

Details for the file fastmysql-0.2.7-py3-none-any.whl.

File metadata

  • Download URL: fastmysql-0.2.7-py3-none-any.whl
  • Upload date:
  • Size: 16.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.10

File hashes

Hashes for fastmysql-0.2.7-py3-none-any.whl
Algorithm Hash digest
SHA256 e3a213eef88b8959d90da0e11c9d01239c27a35d427ffb6cb9ba3a6c16f1d003
MD5 3811d125354b17a37f88fc58329e6ce5
BLAKE2b-256 ed863c9a38b3dc4c260cc4addcb3ce1cec61e4e777ce7abdb3cc6cceba21b9a6

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page