码迷,mamicode.com
首页 >  
搜索关键字:host header    ( 25350个结果
pymysql功能封装
import pymysql# username : adil# password : helloyyjclass DataBaseHandle(object): ''' 定义一个 MySQL 操作类''' def __init__(self, host, username, password, d ...
分类:数据库   时间:2021-06-07 20:23:52    阅读次数:0
pymysql使用模板
db = pymysql.connect(host="localhost", port=3306, user="root", passwd="xxx", db="stu_info")cursor = db.cursor(cursor=pymysql.cursors.DictCursor)cursor ...
分类:数据库   时间:2021-06-07 20:09:12    阅读次数:0
Pymysql连接
PyMysql连接数据库 防止sql注入 import pymysql ? ? def insertsql(): # 建立连接 connection_sql = pymysql.connect( host='localhost', port=3306, user='root', password=' ...
分类:数据库   时间:2021-06-07 20:05:01    阅读次数:0
QDrag
Header: #include <QDrag>qmake: QT += gui Public Functions QDrag(QObject *dragSource)virtual ~QDrag()Qt::DropAction defaultAction() constQPixmap dragCu ...
分类:其他好文   时间:2021-06-07 20:00:17    阅读次数:0
Python_redis
import redisr = redis.Redis(host = "118.xx.x.xx",password="xxxxxx*",port=xxxx,db=4)r = redis.Redis(host = "118.xx.x.xx",password="xxxxxx*",port=xxxx,d ...
分类:编程语言   时间:2021-06-06 19:33:19    阅读次数:0
Python_发送邮件
import yamailusername = "xxxxxx@qq.com"password = "xxxxxx"host = "smtp.qq.com"# host = "smtp.163.com" #163# host = "smtp.126.com" #qq# smtp.send(to="a ...
分类:编程语言   时间:2021-06-06 19:32:03    阅读次数:0
Docker安装Redis集群
拉取redis镜像 docker pull redis 创建redis容器 docker create --name redis-node1 --net host -v /data/redis-data/node1:/data redis --cluster-enabled yes --cluste ...
分类:其他好文   时间:2021-06-06 19:28:17    阅读次数:0
Ncurses(三)- 使用颜色
Ncurses(三)- 使用颜色 检查颜色可用 在使用颜色之前,你需要知道你的终端是否支持颜色显示,你可以通过以下if检测: if (has_colors() == FALSE) { endwin(); printf("Your terminal does not support color\n") ...
分类:其他好文   时间:2021-06-06 19:23:46    阅读次数:0
Django实现MySQL读写分离
Django实现MySQL读写分离 1. 增加slave数据库的配置 DATABASES = { 'default': { # 写(主机) 'ENGINE': 'django.db.backends.mysql', # 数据库引擎 'HOST': '192.168.103.158', # 数据库主机 ...
分类:数据库   时间:2021-06-06 19:02:54    阅读次数:0
nginx配置允许跨域
location / { add_header Access-Control-Allow-Origin *; add_header Access-Control-Allow-Methods 'GET,POST'; add_header Access-Control-Allow-Headers 'DN ...
分类:其他好文   时间:2021-06-06 18:45:56    阅读次数:0
25350条   上一页 1 ... 7 8 9 10 11 ... 2535 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!