码迷,mamicode.com
首页 >  
搜索关键字:password    ( 12255个结果
Win+R cmd 常用命令
Win+R弹出win10的命令窗口,然后输入cmd 一般,进入的初始目录是C盘。 calc:启动计算器 notepad:打开记事本 mspaint:打开画图板 write:快速打开写字板 snippingtool:截图工具,支持无规则截图 osk:打开屏幕键盘 mstsc:远程桌面连接 eventv ...
分类:Windows程序   时间:2020-09-18 03:32:14    阅读次数:73
多数据源源路由方案
数据源配置 配置 parentDataSource 的父bean.再配置多个数据源继承这个父bean,对driverClass,url,username,password,等数据源连接参数进行各自的重写。例如 mySqlDataSource ,在 DataSources bean中注入所有要切换的数 ...
分类:其他好文   时间:2020-09-18 03:29:27    阅读次数:31
视图(5.0.1版本新特性)
视图是动态生成的虚拟表,并未保存真实的表,是动态的,只保存了sql逻辑 创建视图 create view v_user as select username, password from user; 修改视图 -- 如果没有创建,如果有修改 create or replace view v_user ...
分类:其他好文   时间:2020-09-18 02:23:59    阅读次数:23
Vistual Studio 条件编辑应用
1. 代码端 protected void Page_Load(object sender, EventArgs e) { #if Debug this.txtUserId.Text = "admin"; this.txtPass.Attributes.Add("Value", "password" ...
分类:其他好文   时间:2020-09-18 02:06:57    阅读次数:29
更新语句
单表更新,一定要加where,否则更新全表数据 update user set username='hahah', password='666666', name='哈哈哈' where id=16; 多表更新 -- 修改财务部的密码 -- sql92 update user t1, departm ...
分类:其他好文   时间:2020-09-18 01:35:25    阅读次数:38
pymysql
import pymysql user=input() pwd=input() conn = pymysql.connect(host = 'localhost', user = '数据库用户名',password='数据库密码',database ='数据库名‘) cursor = conn.cu ...
分类:数据库   时间:2020-09-18 00:13:19    阅读次数:35
redis-trib in golang
redis 5 之前,可以使用 redis-trib.rb 创建 redis cluster,但是依赖ruby,所以实际并不好用。 或者使用 redis-cli 创建 redis cluster,但是步骤较多,没法一次性完成。 故在github上找了一个使用go写的redis-trib,就不在有依赖 ...
分类:其他好文   时间:2020-09-18 00:07:49    阅读次数:30
Apollo安装配置
介绍 1、组件介绍 apollo-configservice:提供配置获取接口,提供配置更新推送接口,接口服务对象为Apollo客户端apollo-adminservice:提供配置管理接口,提供配置修改、发布等接口,接口服务对象为Portal,以及Eureka 在Eureka之上我们架了一层Met ...
分类:其他好文   时间:2020-09-18 00:04:46    阅读次数:40
Mybatis的动态SQL
1 简介 2 环境搭建 3 if判断 4 where查询条件 5 trim自定义字符串截取 6 choose分支选择 7 set更新 8 foreach遍历 9 MySQL下的foreach批量插入的两种方式 10 Oracle下的foreach批量插入的两种方式 11 内置参数 12 bind绑定... ...
分类:数据库   时间:2020-09-17 23:35:24    阅读次数:41
一个MySQL 8 MGR的用户密码问题
Plugin group_replication reported;Authentication plugin ‘caching_sha2_password‘ reported error: Authentication requires secure connection. Error_code: MY-002061
分类:数据库   时间:2020-09-17 22:46:40    阅读次数:36
12255条   上一页 1 ... 26 27 28 29 30 ... 1226 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!