码迷,mamicode.com
首页 >  
搜索关键字:connection resilienc    ( 5823个结果
redis 的管道操作
#-*- coding: utf8 -*- import redis pool = redis.ConnectionPool() r = redis.Redis(connection_pool=pool) # 支持事务 pipe = r.pipeline(transaction=True) pipe ...
分类:其他好文   时间:2019-12-06 21:11:51    阅读次数:100
redis 的字符串操作
import redis pool = redis.ConnectionPool() r = redis.Redis(connection_pool=pool) # 设置有效时间 r.set("gender","male",20) # 当name 不存在时,执行设置操作 r.setnx("salar ...
分类:其他好文   时间:2019-12-06 19:16:25    阅读次数:127
mysql系统信息函数
1、VERSION() 返回数据库的版本号 SELECT VERSION() -- 5.0.67-community-nt2、CONNECTION_ID() 返回服务器的连接数SELECT CONNECTION_ID() -- 33、DATABASE()、SCHEMA 返回当前数据库名4、USER( ...
分类:数据库   时间:2019-12-06 09:32:18    阅读次数:109
mybatis记录:一、mybatis generator在ideal中的一些坑
"官网介绍" 一、配置 pom文件 generatorConfiguration.xml 然后执行maven里的goal就可以了 二、坑 1. ideal下载不了mybatis generator maven plugin,处理方法,去掉use secure connection 2. 下载不下来运 ...
分类:其他好文   时间:2019-12-05 16:02:17    阅读次数:110
django 和数据库 报错问题
Connection to GGG@localhost failed[08001] Could not create connection to database server.Attempted reconnect3...Giving up 时区问题 更改时区 在数据库迁移时要注意:1.数据类型是 ...
分类:数据库   时间:2019-12-05 15:59:38    阅读次数:125
struts2启动报错:ERROR com.opensymphony.xwork2.conversion.impl.DefaultConversionPropertiesProcessor - Conversion registration error
[framework] 2019-12-05 11:34:05,441 - org.springframework.web.context.ContextLoader -5352 [RMI TCP Connection(3)-127.0.0.1]INFO org.springframework.we ...
分类:其他好文   时间:2019-12-05 13:09:41    阅读次数:149
Spring 框架基础(05):事务管理机制,和实现方式
本文源码:GitHub·点这里||GitEE·点这里一、Spring事务管理1、基础描述Spring事务管理的本质就是封装了数据库对事务支持的操作,使用JDBC的事务管理机制,就是利用java.sql.Connection对象完成对事务的提交和回滚。Connectionconn=DriverManager.getConnection();try{//自动提交设置为falseconn.setAuto
分类:编程语言   时间:2019-12-05 01:08:55    阅读次数:157
ADO.net中常用的对象有哪些?分别描述一下。
Connection 打开数据库连接 (打开数据库连接,也就是程序打通与数据库连接通道)Command 执行数据库命令 (执行sql语句(增删改),返回影响的行数)DataAdapter 连接数据,执行数据库命令,填充DataSet (执行查询语句返回数据表,用于填充数据集)DataSet 数据在内 ...
分类:Web程序   时间:2019-12-04 22:22:25    阅读次数:148
hive 初始化数据库报错
安装hive,初始化数据库的时候报错 schematool -dbType mysql -initSchema Metastore Connection Driver : com.mysql.cj.jdbc.Driver Metastore connection User: hive org.apa ...
分类:数据库   时间:2019-12-02 22:01:28    阅读次数:172
python中使用excutemany执行update语句,批量更新
python中使用excutemany执行update语句,批量更新 # coding:utf8 import pymysql import logging connection = pymysql.connect(host=HOST, port=3306, user=USER, password= ...
分类:编程语言   时间:2019-12-02 10:30:40    阅读次数:518
5823条   上一页 1 ... 59 60 61 62 63 ... 583 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!