1:数据库命令: 显示所有表/数据库:SHOW TABLES /DATABASES; 登录进入数据库:mysql -u root -p 进入数据库 查看所有数据库:show databases; 创建数据库:create database 数据库名; 删除数据库:drop database 数据库名 ...
分类:
数据库 时间:
2021-04-24 13:56:30
阅读次数:
0
Spring Boot 下使用JPA,报org.hibernate.HibernateException: Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not set错误,异常信息如下: Caused ...
分类:
编程语言 时间:
2021-04-23 12:28:00
阅读次数:
0
# 查看所有的数据库SHOW DATABASES; # 选择某一个数据库USE bili; # 查看当前正在使用的数据库SELECT DATABASE(); # 创建一个新的数据库-- CREATE DATABASE douyu;-- CREATE DATABASE IF NOT EXISTS do ...
分类:
数据库 时间:
2021-04-22 16:33:38
阅读次数:
0
恢复内容开始 查询emp中的所有表: select * from emp; 在日常工作中 不建议使用* 因为查询效率较低 常用命令: select database(); 查看当前使用的是哪个数据库 \c 命令,结束一条语句。 exit 命令,退出mysql。 查看创建表的语句: show crea ...
分类:
数据库 时间:
2021-04-22 15:23:44
阅读次数:
0
本文为常规安装 centos7 使用 rpm方式安装 1.下载资源包 oracle-database-preinstall-19c-1.0-1.el7.x86_64.rpm 下载地址:https://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/ ...
分类:
数据库 时间:
2021-04-22 15:13:42
阅读次数:
0
ctfshow web7 和上题一样的套路 先跑一遍字典 "or "a"="a'.).or.('.a.'='.aor 1=1--'or 1=1--a'or' 1=1--"or 1=1--'or.'a.'='a"or"="a'='a'or''=''or'='or'1'or 1=1#'='&passwo ...
分类:
Web程序 时间:
2021-04-21 12:53:43
阅读次数:
0
PostgreSQL 9.6部署 参考:https://www.cnblogs.com/shhnwangjian/p/14680679.html https://docs.konghq.com/install/centos/ ...
分类:
其他好文 时间:
2021-04-21 12:50:51
阅读次数:
0
查看当前默认编码方式 show VARIABLES like 'character_%'; 把linan1类型改成utf8 set character_set_database=utf8; ps:这一步我感觉关系不大?不过网上都说让改,我没改好像也没问题 ef连接字符串修改: Data Source ...
分类:
数据库 时间:
2021-04-21 12:44:41
阅读次数:
0
datebase_router.py # database_router.pyfrom django.conf import settingsDATABASE_MAPPING = settings.DATABASE_APPS_MAPPINGclass DatabaseAppsRouter(objec ...
分类:
数据库 时间:
2021-04-21 11:52:46
阅读次数:
0
天电脑装了win10,需要重新装oracle,这边记录一下重装过程,避免下次浪费时间。 1、oracle下载 官方下地址:http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html 注意Orac ...
分类:
数据库 时间:
2021-04-20 14:47:39
阅读次数:
0