mysql> mysql -u用户名 -p用户密码 mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '我是密码' WITH GRANT OPTION; mysql> flush privileges; mysql> net ...
分类:
数据库 时间:
2020-05-29 13:25:16
阅读次数:
90
<div class="df mb20"> <input type="text" readonly placeholder="请选择图片" class="form-control col-sm-6"> <input type="text" style="width: 100px;" readonly ...
分类:
Web程序 时间:
2020-05-29 12:08:25
阅读次数:
76
一、获取access_token wx.request({ url: 'https://api.weixin.qq.com/cgi-bin/token', method : 'GET', data : { grant_type: 'client_credential', appid: '小程序的ap ...
分类:
微信 时间:
2020-05-29 12:07:42
阅读次数:
373
皮卡皮卡甜品站项目的主要代码已经完成了。接下来介绍其部分内容: 环境和工具: 运行环境:jdk1.8 , tomcat9 , mysql 5.5 工具:eclipse jar包:mysql-connector-java-5.1.13-bin.jar 项目使用技术: 前端:css , javascri ...
分类:
系统相关 时间:
2020-05-28 21:21:02
阅读次数:
88
1.创建数据库(192.168.1.14)create database db_cachecloud;grant all privileges on db_cachecloud.* to cachecloud@'%' identified by 'cachecloud';2.进行安装[root@no ...
分类:
系统相关 时间:
2020-05-28 19:52:12
阅读次数:
108
/etc/systemd/system目录下 [Unit] Description=rpc service After=network.target [Service] ExecStart= -/bin/bash -c "TERM=linux python /root/zrpc_service.py ...
分类:
其他好文 时间:
2020-05-28 16:33:12
阅读次数:
69
参考:http://www.tracefact.net/tech/001.htmlhttps://www.xuebuyuan.com/zh-hant/470245.html我们的web程序被iis启动之后,它是处于什么样的状态的,它应该是由.netframework这个平台下的某个程序 ——A程序激 ...
分类:
Web程序 时间:
2020-05-28 16:24:59
阅读次数:
78
Intellij IDEA 添加jar包的三种方式 转:https://blog.csdn.net/zwj1030711290/article/details/5667835 一.直接复制:(不推荐)方法:直接将硬盘上的jar包复制粘贴到项目的lib目录下即可。注意:1.对于导入的eclipse项目 ...
分类:
编程语言 时间:
2020-05-28 13:27:07
阅读次数:
116
恢复内容开始 现象: 使用Eclipse提交git代码,报错信息如下: Can't connect to any repository: https://github.com/InterFF/abc.git (https://github.com/InterFF/abc.git: authentic ...
分类:
系统相关 时间:
2020-05-28 12:56:33
阅读次数:
278
python达梦数据库操作流程连接数据库dm.connect(...)获取游标dm_conn.cursor()编写SQL语句sql_str执行SQL语句dm_cursor.execute()获取结果列表dt_breakpoint=dm_cursor.fetchall()关闭游标dm_cursor.close()关闭数据库连接dm_conn.close()代码示例importpandasaspdim
分类:
数据库 时间:
2020-05-28 12:56:19
阅读次数:
94