IDEA中Tomcat乱码问题 1、file-setting中修改字符集 2、修改IDEA安装目录bin下的文件,添加-Dfile.encoding=UTF-8 3、Help-- Edit custom vm options 添加-Dfile.encoding=UTF-8 4、重启IDEA 本人经过 ...
分类:
其他好文 时间:
2021-03-04 12:57:56
阅读次数:
0
1 1 import pymysql 2 2 3 3 db = pymysql.connect(host='localhost', user='root', password='123456', database='jddj',port=3306) 4 4 cursor = db.cursor() ...
分类:
数据库 时间:
2021-03-02 12:38:55
阅读次数:
0
链接数据库 public static void main(String[] args) { //简约方式 try { Connection conn = DriverManager.getConnection("jdbc:mysql:/mysql?user=aa"); Statement st = ...
分类:
数据库 时间:
2021-03-02 12:02:39
阅读次数:
0
1. Cannot determine embedded database driver class for database type NONE @SpringBootApplication(exclude = {DataSourceAutoConfiguration.class}) 2. \ta ...
分类:
其他好文 时间:
2021-03-01 13:58:00
阅读次数:
0
在node.js中,我们获取到了前台的数据,然后一半是将前台的数据直接存入数据库中,在我们需要数据是在到数据库中去调取 一:如何在node里面使用mysql 1.1:首先,MySQL是一个模块,所以我们需要现在npm中下载并引入这个模块 1.2:在MySQL这个模板中,有一个方法 mysql .cr ...
分类:
数据库 时间:
2021-03-01 13:33:51
阅读次数:
0
step1:Options->Font settings设置 Charset设置为Unicode,其他保持默认。 step2:Option->Export options设置。 Bit depth一定要设置为32,否则只显示黑白字体。 其他按下图设置 step3:Edit->Open Image M ...
分类:
其他好文 时间:
2021-03-01 13:33:32
阅读次数:
0
InfluxDB操作 1. 显示数据库 > show databases > create database test > drop database test 2. 显示说有表 > show measurements InfluxDB数据备份和恢复 备份元数据 1、influxd backup - ...
分类:
数据库 时间:
2021-03-01 13:29:57
阅读次数:
0
InfluxDB数据备份与恢复 一、基本命令 命令:influxd backup -database dbName backup_path 可选参数:-retention <retention policy name> -shard <shard ID>-since <date> 参数解析:rete ...
分类:
数据库 时间:
2021-03-01 13:29:07
阅读次数:
0
错误原因:这里就是说,分组这一列里面,包含了非字符串的内容,比如数字。因为 .str.contains 的使用就要求这个字段必须是字符串,不能掺杂数字的。 解决方案: # 包含对应关系的所有行 data_ych_pid = self.database[self.database[column_nam ...
分类:
其他好文 时间:
2021-02-24 13:25:38
阅读次数:
0
googlehacking:利用引擎搜索(例如Google、Baidu)有针对的搜索信息来进行网络入侵的技术和行为。 搜索引擎对于关键字提供了多种语法,构造出特殊关键字,Googlehacking技术能够快速全面的让攻击者挖掘到更多的信息,目标主要有一下几种: 1.敏感信息(搜索到个人信息等敏感信息 ...
分类:
其他好文 时间:
2021-02-24 13:20:10
阅读次数:
0