码迷,mamicode.com
首页 >  
搜索关键字:password    ( 12255个结果
解决mysql8报错:ERROR 1410 (42000): You are not allowed to create a user with GRANT
新安装Ubuntu20服务版, 安装mysql8 后 使用以下语句更改密码 update mysql.user set authentication_string='password' where user='root'; 出现show databases,不能使用。 最后无法只能重新安装mysql ...
分类:数据库   时间:2020-06-19 23:19:41    阅读次数:205
Android 控件四 EditText 控件
前言 本文简记 Android 控件 TextView 的常用属性及使用方法。 常用属性 基础属性 请参阅:Android 布局与相关属性 的基础属性部分。 包括:id 属性,宽度、高度属性,背景属性,内、外边距属性等。 文本相关 文本内容属性:android:text="" 文本颜色属性:andr ...
分类:移动开发   时间:2020-06-19 14:18:07    阅读次数:76
centos7中安装zabbix
centos7中安装zabbix 1、关闭防火墙 # systemctl stop firewalld # setenforce 0 同步时间 # ntpdate pool.ntp.org 2、安装Apache、php、mariadb # yum -y install httpd mariadb m ...
分类:其他好文   时间:2020-06-19 00:35:29    阅读次数:86
java实现发送邮件
/** * 发送邮件 可以带有HTML格式 * @param toUser * @param recipients * @param content * @param subject * @throws Exception */ public static void noticePushComman ...
分类:编程语言   时间:2020-06-18 22:10:17    阅读次数:81
MySQLdb 操作数据库
Conn_IP = ""Conn_UserName = ""Conn_PassWord = ""Conn_database = ""conn = MySQLdb.connect(Conn_IP,Conn_UserName,Conn_PassWord,Conn_database)cursor = co ...
分类:数据库   时间:2020-06-18 19:18:04    阅读次数:48
C语言不回显字符输入实现密码输入
#include <stdio.h> #include <conio.h> int main() { char *user; char *pass; char username[30]={0},pass_word[30]={0},password; int count = 0; //密码显示为 * ...
分类:编程语言   时间:2020-06-18 16:04:29    阅读次数:84
Web项目的启动流程
在web项目的启动过程中,我们希望知道它的一般流程是什么,这样我们就可以在各个流程中加入相应的功能,或者对于我们排错也有帮助。 启动tomcat容器以后,容器首先初始化一些必要的组件; 加载项目所引用到的jar包(分别从jdk,tomcat,还有web-inf中的lib目录下); 读取web项目的w ...
分类:Web程序   时间:2020-06-18 13:23:34    阅读次数:54
druid 配置模板
spring.datasource.url=jdbc:mysql://localhost:3306/test?serverTimezone=Asia/Shanghai &useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true&us ...
分类:其他好文   时间:2020-06-18 00:59:16    阅读次数:96
mysql sql语句修改某一字段下所有记录的大小写。
# -*- coding: utf-8 -*- import pymysql db = pymysql.connect( host='127.0.0.1', db='weixin', user="root", password="1233211234567Aa*", charset='utf8', ...
分类:数据库   时间:2020-06-17 21:47:53    阅读次数:105
Uri绑定
package main import ( "github.com/gin-gonic/gin" ) type Login struct { User string `form:"username" json:"user" uri:"user" xml:"user" binding:"require ...
分类:其他好文   时间:2020-06-17 20:33:45    阅读次数:51
12255条   上一页 1 ... 55 56 57 58 59 ... 1226 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!