码迷,mamicode.com
首页 >  
搜索关键字:connect    ( 9961个结果
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
Mybatis Generator学习
1.作用 它可以根据数据库中的表,来帮我们生成供mybatis使用使用实体类,xml和接口类。 2.基本用法 在maven的pom文件中引入MBG(MyBatis Generator)jar包 <dependency> <groupId>org.mybatis.generator</groupId> ...
分类:其他好文   时间:2021-06-07 20:05:20    阅读次数: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
gitlab 代理报错
解决从github上拉代码时报错“Failed to connect to localhost port 1080: Connection refused” 需要两行命令解决问题主要原因是使用了proxy代理,我们只需要关闭代理 git config --global http.proxy //查看 ...
分类:其他好文   时间:2021-06-05 18:13:54    阅读次数:0
Login Vagrant VM using Xshell
Connect Vagrant VM by using Xshell 1. View your vagrant ssh-config type this commend to view your vagrant ssh-config: vagrant ssh-config you will get ...
分类:系统相关   时间:2021-06-05 17:39:35    阅读次数:0
PyQt5实战——《做一个天气预报的查询》
PyQt5实践——《做一个天气预报的查询》 第一步: 设计界面,我们这里直接用Qtdesign设计。 为了大家比较容易设置,我们这里在把对象查看器中的内容贴出来 简单的几个组件:一个窗口+两个按钮+一个下拉是的盒子+一个标签+一个返回文本显示的内容 第二步:将ui文件转换为py文件 将demo.ui ...
分类:其他好文   时间:2021-06-04 19:36:22    阅读次数:0
[AWS - DA] Lambda (ALB, Mult-values header, Edge, Async invocation, Event Source Mapping, Destination) PART 1
Lambda integration with ALB HTTP(s) Lambda function must be registered in a target group ALB Multi-Header Values If a client connect to ALB, we can co ...
分类:移动开发   时间:2021-06-03 18:21:09    阅读次数:0
K8S---harbor故障处理
问题1:harbor服务不能正常提供? Error response from daemon: Get http://hub.atguigu.com/v2/: dial tcp 192.168.66.100:80: connect: connection refused 原因分析:harbor服务器 ...
分类:其他好文   时间:2021-06-03 17:53:13    阅读次数:0
socket 工程编码入门
很多中年朋友大概率学过 socket 通信相关 api, send, recv, listen, connect, accept 等等, 变幻无穷 ... 相关的介绍书籍不乏经典, 有趣例子没完没了. 面对真实的自己, 更多时候是学了等于没学, 一直在门外彷徨 , 买珠还椟于面试. 本文想带门外的程 ...
分类:其他好文   时间:2021-06-02 20:42:10    阅读次数:0
P错误14274:pymssql._pymssql.OperationalError) (20009, b'DB-Lib error message 20009, severity 9:\nUnable to connect: Adaptive Server is unavailable or does not exist (#SyStem@123.57.144.189)\n')
问题描述: pymssql模块连接sqlserver出现如下错误: pymssql._pymssql.OperationalError) (20009, b'DB-Lib error message 20009, severity 9:\nUnable to connect: Adaptive Se ...
分类:数据库   时间:2021-06-02 19:05:11    阅读次数:0
9961条   上一页 1 2 3 4 5 6 ... 997 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!