随笔分类 - MySql
摘要:1-安装 CentOS 7 2-安装 NETCORE SDK SDK 安装文档:https://dotnet.microsoft.com/download/linux-package-manager/centos/sdk-current 安装命令: sudo rpm -Uvh https://pac
阅读全文
摘要:1-创建用户 create user 用户名@'%' identified by '密码'; create user 用户名@'localhost' identified by '密码'; 2-授权 grant all privileges on *.* to '用户名'@'%' identifie
阅读全文
摘要:mysql 版本 5.7数据库连接版本 <!--MySql--><dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>6.0.6</version></dependen
阅读全文
摘要:通过断点调试捕获错误消息:The server time zone value '�й���ʱ��' is unrecognized or represents more than one time zone. You must configure either the server or JDB
阅读全文
摘要:1-阿里云 CentOS 7.3 X64 2-安装NET CORE 教程地址:https://www.microsoft.com/net/core#linuxcentos 3-安装 libaio-0.3.109-13.el7.x86_64.rpm (安装mysql 时出现 libaio.so.1(6
阅读全文
摘要:场景:由于一些表中设计了一些冗余字段,因此在主表修改了该冗余字段的值得时候,需要动态更新在其他表中冗余字段的值 1 BEGIN 2 #Routine body goes here... 3 4 /*SQL语句变量*/ 5 DECLARE vstrSql VARCHAR(300...
阅读全文