查看当前默认编码方式 show VARIABLES like 'character_%'; 把linan1类型改成utf8 set character_set_database=utf8; ps:这一步我感觉关系不大?不过网上都说让改,我没改好像也没问题 ef连接字符串修改: Data Source ...
分类:
数据库 时间:
2021-04-21 12:44:41
阅读次数:
0
初学者很容易出现的问题,可能会很困扰 springboot启动时报错 错误: 找不到或无法加载主类 com.xxx.xxx.Application 解决起来很简单: 刷新一下maven Reload All Maven Projects ...
分类:
移动开发 时间:
2021-04-21 12:37:38
阅读次数:
0
创建用户 SQL> conn sys/123456 as sysdba 已连接。 SQL> show user USER 为 "SYS" SQL> create user Irving identified by Irving; 用户已创建。 用户虽然创建了但是什么权限都没有 给用户授权后就能登陆 ...
分类:
数据库 时间:
2021-04-20 14:57:17
阅读次数:
0
1.simple_php ?<?php show_source(__FILE__); include("config.php"); $a=@$_GET['a']; $b=@$_GET['b']; if($a==0 and $a){ echo $flag1; } if(is_numeric($b)){ ...
分类:
其他好文 时间:
2021-04-20 14:34:36
阅读次数:
0
解锁用户 SQL> alter user scott identified by tiger account unlock; 用户已更改。 切换用户 SQL> conn scott/tiger 已连接。 查看当前用户 SQL> show user USER 为 "SCOTT" 查看所有表 SQL> ...
分类:
其他好文 时间:
2021-04-20 14:12:18
阅读次数:
0
-- 查看创建数据库语句 SHOW CREATE DATABASE 数据库名 -- 查看创建表语句 SHOW CREATE TABLE 表名 -- 查看表结构 DESC 表名 MYISAM INNODB 事务支持 不支持 支持 数据行锁定 不支持 支持 外键 不支持 支持 全文索引 支持 不支持 表 ...
分类:
数据库 时间:
2021-04-20 14:02:45
阅读次数:
0
#! /bin/bash # @author # @breif auto ssh function show_usage(){ echo -e " This is Usage " echo -e " -h: which host to go,for example dev041" } functio ...
分类:
其他好文 时间:
2021-04-19 15:50:26
阅读次数:
0
[Luogu P6822PA2012]Tax] (http://www.luogu.com.cn/problem/P6822") All right. Let's go! 题目描述 给出一个 n 个点 m 条边的无向图,经过一个点的代价是进入和离开这个点的两条边的边权的较大值,求从起点 1 到点 n ...
分类:
其他好文 时间:
2021-04-19 15:06:50
阅读次数:
0
前后端分离场景后端需要配置跨域,否则浏览器那端跨域请求会报错。 跨域要配置的: app.all('*', (req, res, next) => { // google需要配置,否则报错cors error res.setHeader('Access-Control-Allow-Credential ...
分类:
其他好文 时间:
2021-04-19 14:12:06
阅读次数:
0
pwd,打印当前目录 ls:List information about the FILEs (the current directory by default) -a/--all -d/--directory dir -a 进入如camera的目录后运行dir、ls会卡住(可以ctrl+c退出)。 ...
分类:
移动开发 时间:
2021-04-16 12:10:03
阅读次数:
0